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

Method addRows

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

Source from the content-addressed store, hash-verified

2422
2423
2424 public void addRows(Table source) {
2425 int index = getRowCount();
2426 setRowCount(index + source.getRowCount());
2427 for (TableRow row : source.rows()) {
2428 setRow(index++, row);
2429 }
2430 }
2431
2432
2433 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