kiwi.event
Interface WorkspaceListener

All Known Implementing Classes:
BasicWorkspaceListener

public abstract interface WorkspaceListener

This class represents a listener that is notified of changes in a WorkspaceManager.

Version:
1.0 (05/98)
Author:
Mark Lindner, PING Software Group
See Also:
WorkspaceManager, WorkspaceEditor

Method Summary
 void editorClosed(WorkspaceEvent evt)
          Invoked after an editor is closed in the workspace.
 void editorDeselected(WorkspaceEvent evt)
          Invoked after an editor has been deselected in the workspace.
 void editorIconified(WorkspaceEvent evt)
          Invoked after an editor has been iconified in the workspace.
 void editorRestored(WorkspaceEvent evt)
          Invoked after an editor has been restored (from an icon) in the workspace.
 void editorSelected(WorkspaceEvent evt)
          Invoked after an editor has been selected in the workspace.
 void editorStateChanged(WorkspaceEvent evt)
          Invoked after an editor's state has changed in some way.
 

Method Detail

editorSelected

public void editorSelected(WorkspaceEvent evt)
Invoked after an editor has been selected in the workspace.

editorDeselected

public void editorDeselected(WorkspaceEvent evt)
Invoked after an editor has been deselected in the workspace.

editorRestored

public void editorRestored(WorkspaceEvent evt)
Invoked after an editor has been restored (from an icon) in the workspace.

editorIconified

public void editorIconified(WorkspaceEvent evt)
Invoked after an editor has been iconified in the workspace.

editorClosed

public void editorClosed(WorkspaceEvent evt)
Invoked after an editor is closed in the workspace.

editorStateChanged

public void editorStateChanged(WorkspaceEvent evt)
Invoked after an editor's state has changed in some way.