@webref table:method @brief Adds a row to a table @see Table#removeRow(int) @see Table#clearRows()
()
| 2318 | * @see Table#clearRows() |
| 2319 | */ |
| 2320 | public TableRow addRow() { |
| 2321 | //if (rowIncrement == 0) { |
| 2322 | setRowCount(rowCount + 1); |
| 2323 | return new RowPointer(this, rowCount - 1); |
| 2324 | } |
| 2325 | |
| 2326 | |
| 2327 | /** |
no test coverage detected