workspace
Interface WorkspaceListener

All Known Implementing Classes:
CommandRule, FactoryManager, FocusTraversalManager, InfixRule, ReundoManager

public interface WorkspaceListener

This listener interface is for receiving "interesting" events on the workspace.


Method Summary
 void workspaceEventOccurred(WorkspaceEvent event)
          Invoked whenever any of the enumerated events specified within WorkspaceEvent occur.
 

Method Detail

workspaceEventOccurred

void workspaceEventOccurred(WorkspaceEvent event)
Invoked whenever any of the enumerated events specified within WorkspaceEvent occur. We leave it to the implementor to look at the event type and determine what to do from there. We chose this design so that listeners need not implement all X methods, where X is the number of workspace events.

Parameters:
event - WorkspaceEvent object holding information regarding the triggered event.