Where Am I? Class Hierarchy (JFC) All Classes (JFC)

Interface com.sun.java.swing.event.TableColumnModelListener

public interface TableColumnModelListener
extends EventListener

TableColumnModelListener defines the interface for an object that listens to changes in a TableColumnModel.

See Also:
TableColumnModelEvent

Method Index

columnAdded(TableColumnModelEvent)
Tells listeners that a column was added to the model.
columnMarginChanged(ChangeEvent)
Tells listeners that a column was moved due to a margin change.
columnMoved(TableColumnModelEvent)
Tells listeners that a column was repositioned.
columnRemoved(TableColumnModelEvent)
Tells listeners that a column was removed from the model.
columnSelectionChanged(ListSelectionEvent)
Tells listeners that the selection model of the TableColumnModel changed.

Methods

columnAdded
 public abstract void columnAdded(TableColumnModelEvent e)
Tells listeners that a column was added to the model.

columnRemoved
 public abstract void columnRemoved(TableColumnModelEvent e)
Tells listeners that a column was removed from the model.

columnMoved
 public abstract void columnMoved(TableColumnModelEvent e)
Tells listeners that a column was repositioned.

columnMarginChanged
 public abstract void columnMarginChanged(ChangeEvent e)
Tells listeners that a column was moved due to a margin change.

columnSelectionChanged
 public abstract void columnSelectionChanged(ListSelectionEvent e)
Tells listeners that the selection model of the TableColumnModel changed.


Where Am I? Class Hierarchy (JFC) All Classes (JFC)