Updated PVector mult() and div() reference

This commit is contained in:
Scott Murray
2013-05-23 14:46:23 -07:00
parent 8ed4286657
commit b91258399f
2 changed files with 13 additions and 16 deletions

View File

@@ -1717,7 +1717,7 @@ public class Table {
rowCount = newCount;
}
/**
/**
* @webref table:method
* @brief Adds a row to the table
*/
@@ -1726,7 +1726,9 @@ public class Table {
return new RowPointer(this, rowCount - 1);
}
/**
* @param source a reference to the original row to be duplicated
*/
public TableRow addRow(TableRow source) {
int row = rowCount;
// Make sure there are enough columns to add this data
@@ -1757,7 +1759,9 @@ public class Table {
return new RowPointer(this, row);
}
/**
* @nowebref
*/
public TableRow addRow(Object[] columnData) {
setRow(getRowCount(), columnData);
return new RowPointer(this, rowCount - 1);