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