From 7b60e43550f468849637f6487f62eae2efcdb44a Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Sat, 25 May 2013 21:14:42 -0700 Subject: [PATCH] Adding a couple related reference links for Table methods --- core/src/processing/data/Table.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/src/processing/data/Table.java b/core/src/processing/data/Table.java index 49d83793a..6d2d11190 100644 --- a/core/src/processing/data/Table.java +++ b/core/src/processing/data/Table.java @@ -54,9 +54,9 @@ import processing.core.PConstants; *

A rough "spec" for CSV can be found here.

* * @webref data:composite - * @see PApplet#createTable() * @see PApplet#loadTable(String) * @see PApplet#saveTable(Table, String) + * @see TableRow */ public class Table { protected int rowCount; @@ -1224,6 +1224,7 @@ public class Table { /** * @webref table:method * @brief Adds a new column to a table + * @see Table#removeColumn(String) */ public void addColumn() { addColumn(null, STRING); @@ -1298,6 +1299,7 @@ public class Table { * @webref table:method * @brief Removes a column from a table * @param columnName the title of the column to be removed + * @see Table#addColumn() */ public void removeColumn(String columnName) { removeColumn(getColumnIndex(columnName));