MCPcopy Index your code
hub / github.com/benfry/processing4 / addRow

Method addRow

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

Use addRow() to add a new row of data to a Table object. By default, an empty row is created. Typically, you would store a reference to the new row in a TableRow object (see newRow in the example above), and then set individual values using setInt() , setFloat()<

()

Source from the content-addressed store, hash-verified

2361 * @see Table#clearRows()
2362 */
2363 public TableRow addRow() {
2364 //if (rowIncrement == 0) {
2365 setRowCount(rowCount + 1);
2366 return new RowPointer(this, rowCount - 1);
2367 }
2368
2369
2370 /**

Callers 3

parseIntoMethod · 0.95
odsParseSheetMethod · 0.95
updateErrorTableMethod · 0.45

Calls 3

setRowCountMethod · 0.95
setRowMethod · 0.95
getRowCountMethod · 0.95

Tested by 1

parseIntoMethod · 0.76