MCPcopy Index your code
hub / github.com/processing/processing / addRow

Method addRow

core/src/processing/data/Table.java:2320–2324  ·  view source on GitHub ↗

@webref table:method @brief Adds a row to a table @see Table#removeRow(int) @see Table#clearRows()

()

Source from the content-addressed store, hash-verified

2318 * @see Table#clearRows()
2319 */
2320 public TableRow addRow() {
2321 //if (rowIncrement == 0) {
2322 setRowCount(rowCount + 1);
2323 return new RowPointer(this, rowCount - 1);
2324 }
2325
2326
2327 /**

Callers 2

odsParseSheetMethod · 0.95
updateErrorTableMethod · 0.45

Calls 3

setRowCountMethod · 0.95
setRowMethod · 0.95
getRowCountMethod · 0.95

Tested by

no test coverage detected