Added reference for Table addColumn() and removeColumn()

This commit is contained in:
Scott Murray
2013-05-22 17:57:52 -07:00
parent 423e59e934
commit 06d0812fc0

View File

@@ -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;