nextapp.echo.event
Interface TableColumnModelListener

All Superinterfaces:
java.util.EventListener

public interface TableColumnModelListener
extends java.util.EventListener

The listener interface for receiving table column model events.

See Also:
nextapp.echo.Table;, TableColumnModelEvent, TableColumnModel

Method Summary
 void columnAdded(TableColumnModelEvent e)
          Invoked when a table column is added.
 void columnMoved(TableColumnModelEvent e)
          Invoked when a table column is moved.
 void columnRemoved(TableColumnModelEvent e)
          Invoked when a table column is removed.
 

Method Detail

columnAdded

void columnAdded(TableColumnModelEvent e)
Invoked when a table column is added.

Parameters:
e - The event describing the action.

columnMoved

void columnMoved(TableColumnModelEvent e)
Invoked when a table column is moved.

Parameters:
e - The event describing the action.

columnRemoved

void columnRemoved(TableColumnModelEvent e)
Invoked when a table column is removed.

Parameters:
e - The event describing the action.