com.dlsc.flexgantt.command
Interface ICommandStackListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
AbstractRowHeader, GanttChartGlassPane, LayerContainer, LayerContainerRowHeader, RedoAction, RedoActionLabeled, TreeTable, TreeTableDragAndDropManager, TreeTableRowHeader, UndoAction, UndoActionLabeled

public interface ICommandStackListener
extends java.util.EventListener

Command stack listeners can be attached to command stacks and will be informed if a command gets executed, undone or redone.

Since:
1.0
Author:
Dirk Lemmermann
See Also:
CommandStackEvent

Method Summary
 void commandStackChanged(CommandStackEvent e)
          Gets called whenever the command stack changed.
 

Method Detail

commandStackChanged

void commandStackChanged(CommandStackEvent e)
Gets called whenever the command stack changed. The event object that is passed to this method contains information about the type of event and a reference to the command that caused the event.

Parameters:
e - the event issued by the command stack
Since:
1.0