Use addRow() to add a new row of data to a Table object. By default, an empty row is created. Typically, you would store a reference to the new row in a TableRow object (see newRow in the example above), and then set individual values using setInt() , setFloat()<
()
| 2361 | * @see Table#clearRows() |
| 2362 | */ |
| 2363 | public TableRow addRow() { |
| 2364 | //if (rowIncrement == 0) { |
| 2365 | setRowCount(rowCount + 1); |
| 2366 | return new RowPointer(this, rowCount - 1); |
| 2367 | } |
| 2368 | |
| 2369 | |
| 2370 | /** |