All Packages  Class Hierarchy  This Package  Previous  Next  Index

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

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

Methods

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

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

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

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

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


All Packages  Class Hierarchy  This Package  Previous  Next  Index