TableModel<V> |
TableModel.addColumn(java.lang.String label,
V[] newColumnValues) |
Adds a new column into the table model as the last column.
|
TableModel<V> |
TableModel.addListener(TableModel.Listener<V> listener) |
Adds a listener to this table model that will be notified whenever the model changes
|
TableModel<V> |
TableModel.addRow(java.util.Collection<V> values) |
Adds a new row to the table model at the end.
|
TableModel<V> |
TableModel.addRow(V... values) |
Adds a new row to the table model at the end.
|
TableModel<V> |
TableModel.clear() |
Removes all rows from the table, this will trigger listeners for each row
|
TableModel<V> |
Table.getTableModel() |
Returns the underlying table model
|
TableModel<V> |
TableModel.insertColumn(int index,
java.lang.String label,
V[] newColumnValues) |
Adds a new column into the table model at a specified index.
|
TableModel<V> |
TableModel.insertRow(int index,
java.util.Collection<V> values) |
Inserts a new row to the table model at a particular index.
|
TableModel<V> |
TableModel.removeColumn(int index) |
Removes a column from the table model
|
TableModel<V> |
TableModel.removeListener(TableModel.Listener<V> listener) |
Removes a listener from this model so that it will no longer receive any notifications when the model changes
|
TableModel<V> |
TableModel.removeRow(int index) |
Removes a row at a particular index from the table model.
|
TableModel<V> |
TableModel.setCell(int columnIndex,
int rowIndex,
V value) |
Updates the call value stored at a specific column/row coordinate.
|
TableModel<V> |
TableModel.setColumnLabel(int index,
java.lang.String newLabel) |
Updates the label of a column header
|