public abstract class VetoableDockFrontendAdapter extends Object implements VetoableDockFrontendListener
VetoableDockFrontendListener, does
nothing in its methods.| Constructor and Description |
|---|
VetoableDockFrontendAdapter() |
| Modifier and Type | Method and Description |
|---|---|
void |
hidden(VetoableDockFrontendEvent event)
Called whenever a set of
Dockable was hidden. |
void |
hiding(VetoableDockFrontendEvent event)
Called before a set of
Dockables is hidden. |
void |
showing(VetoableDockFrontendEvent event)
Called before a
Dockable is shown. |
void |
shown(VetoableDockFrontendEvent event)
Called whenever a
Dockable was shown. |
public void hidden(VetoableDockFrontendEvent event)
VetoableDockFrontendListenerDockable was hidden. Other than
VetoableDockFrontendListener.hiding(VetoableDockFrontendEvent) this method is always called.hidden in interface VetoableDockFrontendListenerevent - description of the element and how it got closedpublic void hiding(VetoableDockFrontendEvent event)
VetoableDockFrontendListenerDockables is hidden. To abort the
operation, VetoableDockFrontendEvent.cancel() can be invoked.
This method may not always be invoked for all Dockables, it
is certainly invoked if DockFrontend.hide(Dockable)
is called or if DockFrontend.setSetting(bibliothek.gui.dock.frontend.Setting, boolean).hiding in interface VetoableDockFrontendListenerevent - description of the element to closepublic void shown(VetoableDockFrontendEvent event)
VetoableDockFrontendListenerDockable was shown. Other than
VetoableDockFrontendListener.showing(VetoableDockFrontendEvent) this method is always called.shown in interface VetoableDockFrontendListenerevent - description of the element and how it got shownpublic void showing(VetoableDockFrontendEvent event)
VetoableDockFrontendListenerDockable is shown. To abort the operation,
VetoableDockFrontendEvent.cancel() can be invoked.
This method may not be called for all Dockables, it is certainly
called if a client opens a Dockable through DockFrontend.show(Dockable)showing in interface VetoableDockFrontendListenerevent - description of the element to closeCopyright © 2017 Docking Frames. All rights reserved.