Package bibliothek.gui.dock.facile.mode
Interface ModeAreaListener
public interface ModeAreaListener
A listener that can be added to a
ModeArea. The ModeArea must
inform this listener if one of its children changed the location.- Author:
- Benjamin Sigg
-
Method Summary
Modifier and TypeMethodDescriptionvoidinternalLocationChange(ModeArea source, Set<Dockable> dockables) To be called if a set ofDockables, which are children of theModeAreasource, changed their location such that theirModemight change.
Note: this method gets only called ifDockable.getDockParent()did not change.
-
Method Details
-
internalLocationChange
To be called if a set ofDockables, which are children of theModeAreasource, changed their location such that theirModemight change.
Note: this method gets only called ifDockable.getDockParent()did not change. OnlyModeAreas which represent more than oneModeare required to call this listener.- Parameters:
source- the source of the eventdockables- all the element which might have changed their mode
-