From 06d0812fc03a629f83ed90593f30d7353931a37e Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Wed, 22 May 2013 17:57:52 -0700 Subject: [PATCH] Added reference for Table addColumn() and removeColumn() --- core/src/processing/data/Table.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/src/processing/data/Table.java b/core/src/processing/data/Table.java index b84ad37cb..71eafdd2e 100644 --- a/core/src/processing/data/Table.java +++ b/core/src/processing/data/Table.java @@ -1297,11 +1297,15 @@ public class Table { /** * @webref table:method * @brief Removes a column from the table + * @param columnName the title of the column to be removed */ public void removeColumn(String columnName) { removeColumn(getColumnIndex(columnName)); } + /** + * @param column the index number of the column to be removed + */ public void removeColumn(int column) { int newCount = columns.length - 1;