|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface VetoableDockFrontendListener
This listener is added to a DockFrontend
. It gets informed before
and after a Dockable
is shown or hidden. In some cases this listener
can cancel the operation.
Method Summary | |
---|---|
void |
hidden(VetoableDockFrontendEvent event)
Called whenever a Dockable was hidden. |
void |
hiding(VetoableDockFrontendEvent event)
Called before a Dockable is hidden. |
void |
showing(VetoableDockFrontendEvent event)
Called before a Dockable is shown. |
void |
shown(VetoableDockFrontendEvent event)
Called whenever a Dockable was shown. |
Method Detail |
---|
void showing(VetoableDockFrontendEvent event)
Dockable
is shown. This method is only called
if the user tries to open the element through the standard way, meaning
that DockFrontend.show(Dockable,boolean)
is called.VetoableDockFrontendEvent.cancel()
can
be invoked.
event
- description of the element to closevoid shown(VetoableDockFrontendEvent event)
Dockable
was shown. Other than
showing(VetoableDockFrontendEvent)
this method is always called.
event
- description of the element and how it got shownvoid hiding(VetoableDockFrontendEvent event)
Dockable
is hidden. This method is only called
if the user tries to close the element through the close-action, meaning
that DockFrontend.hide(Dockable,boolean)
is called.VetoableDockFrontendEvent.cancel()
can
be invoked.
event
- description of the element to closevoid hidden(VetoableDockFrontendEvent event)
Dockable
was hidden. Other than
hiding(VetoableDockFrontendEvent)
this method is always called.
event
- description of the element and how it got closed
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |