ConForM.CoopnTools.CoKer.Visual
Interface GraphicalTool

All Known Implementing Classes:
Simulator, HLPN

public interface GraphicalTool

Graphical Tool instantiating a graphical tool visual.


Method Summary
 void notifyEdition()
          Notification routine: the visual generated a new edition.
 void notifyQuit()
          Notification routine: the visual quit.
 void notifyRedo()
          Notification routine: the visual generated a new redo.
 void notifySave()
          Notification routine: the visual generated a save.
 void notifySaveAs(java.lang.String name)
          Notification routine: the visual generated a save.
 void notifyUndo()
          Notification routine: the visual generated a new undo.
 

Method Detail

notifyQuit

public void notifyQuit()
Notification routine: the visual quit. The notification is called after a possible save (if modified) but before the visual quits.

notifySave

public void notifySave()
                throws java.lang.IllegalAccessException
Notification routine: the visual generated a save. The notification is called after that the save is performed in the visual.

notifySaveAs

public void notifySaveAs(java.lang.String name)
                  throws java.lang.IllegalAccessException
Notification routine: the visual generated a save. The notification is called after that the save is performed in the visual.

notifyEdition

public void notifyEdition()
Notification routine: the visual generated a new edition. The notification is called after that the edition is performed in the visual.

notifyUndo

public void notifyUndo()
Notification routine: the visual generated a new undo. The notification is called before that the undo is performed in the visual.

notifyRedo

public void notifyRedo()
Notification routine: the visual generated a new redo. The notification is called after that the redo is performed in the visual.