com.dlsc.flexgantt.model.gantt
Interface IGanttChartModelListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
LayerContainer

public interface IGanttChartModelListener
extends java.util.EventListener

An event listener that can be used in combination with the IGanttChartModel. Implementors can attach itself to a Gantt chart model and will receive events when timeline objects are being added, removed, etc...

Since:
1.0
Author:
Dirk Lemmermann
See Also:
IGanttChartModel.addGanttChartModelListener(IGanttChartModelListener)

Method Summary
 void ganttChartChanged(GanttChartModelEvent evt)
          Callback method that gets invoked whenever change occures in the Gantt chart model that is being observed by the listener.
 

Method Detail

ganttChartChanged

void ganttChartChanged(GanttChartModelEvent evt)
Callback method that gets invoked whenever change occures in the Gantt chart model that is being observed by the listener.

Parameters:
evt - the event object describing the change that took place in the Gantt chart model
Since:
1.0