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

Method addRows

core/src/processing/data/Table.java:2381–2387  ·  view source on GitHub ↗
(Table source)

Source from the content-addressed store, hash-verified

2379
2380
2381 public void addRows(Table source) {
2382 int index = getRowCount();
2383 setRowCount(index + source.getRowCount());
2384 for (TableRow row : source.rows()) {
2385 setRow(index++, row);
2386 }
2387 }
2388
2389
2390 public void insertRow(int insert, Object[] columnData) {

Callers

nothing calls this directly

Calls 4

getRowCountMethod · 0.95
setRowCountMethod · 0.95
setRowMethod · 0.95
rowsMethod · 0.80

Tested by

no test coverage detected