Package bibliothek.gui.dock.common.event
Interface CDockableStateListener
- All Known Implementing Classes:
CDockableAdapter
public interface CDockableStateListener
- Author:
- Benjamin Sigg
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidextendedModeChanged(CDockable dockable, ExtendedMode mode) Called if theextended modeofdockablechanged.voidvisibilityChanged(CDockable dockable) Called when thevisibility-property changed.
-
Method Details
-
visibilityChanged
Called when thevisibility-property changed. Please read the notes ofCDockable.isVisible()to learn more about the exact meaning of visibility in the context of aCDockable.
Clients interested to know whether the user can see theDockableor not should use aCDockableLocationListener.- Parameters:
dockable- the source of the event- See Also:
-
extendedModeChanged
Called if theextended modeofdockablechanged.- Parameters:
dockable- the element whose mode changedmode- the new mode
-