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