(Table source)
| 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) { |
nothing calls this directly
no test coverage detected