public interface TableColumnModelListener extends EventListener
TableColumnModelListener
can register with a
TableColumnModel
to receive notification of changes to the model.Modifier and Type | Method and Description |
---|---|
void |
columnAdded(TableColumnModelEvent event)
Called by the
TableColumnModel to indicate that a column has been
added to the model. |
void |
columnMarginChanged(ChangeEvent event)
Called by the
TableColumnModel to indicate that the model's
column margin has changed. |
void |
columnMoved(TableColumnModelEvent event)
Called by the
TableColumnModel to indicate that a column has been
moved. |
void |
columnRemoved(TableColumnModelEvent event)
Called by the
TableColumnModel to indicate that a column has been
removed from the model. |
void |
columnSelectionChanged(ListSelectionEvent event)
Called by the
TableColumnModel to indicate that the column
selection state has changed. |
void columnAdded(TableColumnModelEvent event)
TableColumnModel
to indicate that a column has been
added to the model.event
- information about the column addition.void columnMarginChanged(ChangeEvent event)
TableColumnModel
to indicate that the model's
column margin has changed.event
- the event (identifies the source).void columnMoved(TableColumnModelEvent event)
TableColumnModel
to indicate that a column has been
moved.event
- information about the column move.void columnRemoved(TableColumnModelEvent event)
TableColumnModel
to indicate that a column has been
removed from the model.event
- information about the column removal.void columnSelectionChanged(ListSelectionEvent event)
TableColumnModel
to indicate that the column
selection state has changed.event
- information about the column selection state.