com.dlsc.flexgantt.swing.layer.timeline
Interface ITimelineObjectEditorListener

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

public interface ITimelineObjectEditorListener
extends java.util.EventListener

A listener interface for timeline object editors. The listener will be informed if the user stopped or canceled the editing of a timeline object from within the editor component (by pressing on an OK or CANCEL button for example).

Since:
1.0
Author:
Dirk Lemmermann

Method Summary
 void editingCanceled(javax.swing.event.ChangeEvent evt)
          Callback method that gets invoked if the user canceled the editing of a timeline object.
 void editingStopped(javax.swing.event.ChangeEvent evt)
          Callback method that gets invoked if the user stopped the editing of a timeline object.
 

Method Detail

editingStopped

void editingStopped(javax.swing.event.ChangeEvent evt)
Callback method that gets invoked if the user stopped the editing of a timeline object.

Parameters:
evt - the change event with information about the source of the callback call
Since:
1.0

editingCanceled

void editingCanceled(javax.swing.event.ChangeEvent evt)
Callback method that gets invoked if the user canceled the editing of a timeline object.

Parameters:
evt - the change event with information about the source of the callback call
Since:
1.0