Returns the TableColumn at the given index in this DataTable. @param i The index for which the TableColumn in this DataTable should be returned @return The TableColumn at the given index in this DataTable
(int i)
| 109 | * @return The TableColumn at the given index in this DataTable |
| 110 | */ |
| 111 | public TableColumn getColumn(int i) |
| 112 | { |
| 113 | return columns.get(i); |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * Appends a new row of data to this DataTable. |