Package org.graffiti.plugin.view
Interface ViewListener
- All Known Subinterfaces:
ViewManager
- All Known Implementing Classes:
AlignNodesComponent
,DefaultViewManager
,FrameTabbedPane
,Inspector
,IPK_StandardTools
,SelectNodesComponent
,SubtabHostTab
,ZoomChangeComponent
,ZoomChangeComponent
,ZoomFitChangeComponent
public interface ViewListener
Interface for all who want to be noticed when a different view becomes
active. The events that implementors get are disjoint from those that
SessionLister
s get.- Version:
- $Revision: 1.4 $
- See Also:
Session
-
Method Summary
Modifier and Type Method Description void
viewChanged(View newView)
This method is called when the view changes.
-
Method Details
-
viewChanged
This method is called when the view changes. This method is not called when another session is activated. ImplementSessionListener
if you are interested in session changed events.- Parameters:
newView
- the new View.
-