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)
This tells the listeners a column was added to the model
 o columnMarginChanged(ChangeEvent)
This tells the listeners a column was moved
 o columnMoved(TableColumnModelEvent)
This tells the listeners a column was moved
 o columnRemoved(TableColumnModelEvent)
This tells the listeners a column was removed from the model
 o columnSelectionChanged(ListSelectionEvent)
This tells the listeners that the selection model of the TableColumnModel changed

Methods

 o columnAdded
 public abstract void columnAdded(TableColumnModelEvent e)
This tells the listeners a column was added to the model

 o columnRemoved
 public abstract void columnRemoved(TableColumnModelEvent e)
This tells the listeners a column was removed from the model

 o columnMoved
 public abstract void columnMoved(TableColumnModelEvent e)
This tells the listeners a column was moved

 o columnMarginChanged
 public abstract void columnMarginChanged(ChangeEvent e)
This tells the listeners a column was moved

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


All Packages  Class Hierarchy  This Package  Previous  Next  Index