Copyright © 2011 Citra Technologies. All Rights Reserved.

com.citra.event
Interface GroupTableColumnModelListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
FilterTableHeader, GroupTableHeader, PivotTableHeader, TreeTableHeader

public interface GroupTableColumnModelListener
extends EventListener

GroupTableColumnModelListener defines the interface for an object that listens to changes in a GroupTableColumnModel.


Method Summary
 void groupColumnsChanged(GroupTableColumnModelEvent e)
          Tells listeners that columns under a group column have changed in some way.
 void groupColumnsInserted(GroupTableColumnModelEvent e)
          Tells listeners that group columns were added to the model.
 void groupColumnsRemoved(GroupTableColumnModelEvent e)
          Tells listeners that group columns were removed from the model.
 void groupStructureChanged(GroupTableColumnModelEvent e)
          Tells listeners that the group column structure was changed.
 

Method Detail

groupColumnsInserted

void groupColumnsInserted(GroupTableColumnModelEvent e)
Tells listeners that group columns were added to the model.

Parameters:
e - the event that identifies the addition.

groupColumnsRemoved

void groupColumnsRemoved(GroupTableColumnModelEvent e)
Tells listeners that group columns were removed from the model.

Parameters:
e - the event that identifies the removal

groupStructureChanged

void groupStructureChanged(GroupTableColumnModelEvent e)
Tells listeners that the group column structure was changed.

Parameters:
e - the event that identifies the structure change

groupColumnsChanged

void groupColumnsChanged(GroupTableColumnModelEvent e)
Tells listeners that columns under a group column have changed in some way.

Parameters:
e - the event that identifies the column change

Copyright © 2011 Citra Technologies. All Rights Reserved.