com.dlsc.flexgantt.swing
Interface ISortingListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
GanttChartGlassPane, TreeTableHeader

public interface ISortingListener
extends java.util.EventListener

Observers that implement the sorting interface will be informed whenever the user sorts the Gantt charts / the tree tables. This is especially useful in order to visualize to the user that a sort is currently going on (show the busy cursor).

Since:
1.0
Author:
Dirk Lemmermann
See Also:
AbstractGanttChart.addSortingListener(ISortingListener)

Method Summary
 void sorting(SortingEvent evt)
          Callback method that gets invoked when a sort starts or finishes.
 

Method Detail

sorting

void sorting(SortingEvent evt)
Callback method that gets invoked when a sort starts or finishes.

Parameters:
evt - an event object with details about the sorting operation
Since:
1.0