Uses of Class
bibliothek.gui.dock.event.VetoableDockFrontendEvent

Packages that use VetoableDockFrontendEvent
bibliothek.gui.dock.common.event Various listeners and adapters that can be added to CControl, CDockable and other classes associated with them. 
bibliothek.gui.dock.common.intern Classes and interfaces used internally. 
bibliothek.gui.dock.event Listeners, adapters and events used in the whole framework.
A Listener is added to some object that needs to be observed, the Listener will be informed whenever the observed object changes. An Adapter is an implementation of a Listener, but the methods of an Adapter are empty. An Event is an object carrying information from an observed object to a Listener.  
 

Uses of VetoableDockFrontendEvent in bibliothek.gui.dock.common.event
 

Methods in bibliothek.gui.dock.common.event that return VetoableDockFrontendEvent
 VetoableDockFrontendEvent CVetoClosingEvent.intern()
          Gets the source of this event.
 

Constructors in bibliothek.gui.dock.common.event with parameters of type VetoableDockFrontendEvent
CVetoClosingEvent(CControl control, VetoableDockFrontendEvent source, CDockable... dockables)
          Creates a new event.
 

Uses of VetoableDockFrontendEvent in bibliothek.gui.dock.common.intern
 

Methods in bibliothek.gui.dock.common.intern with parameters of type VetoableDockFrontendEvent
protected  CDockable[] ControlVetoClosingListener.getCDockables(VetoableDockFrontendEvent event)
          Gets all the CDockables that are to be forwarded by this converter.
 void ControlVetoClosingListener.hidden(VetoableDockFrontendEvent event)
           
 void ControlVetoClosingListener.hiding(VetoableDockFrontendEvent event)
           
 void ControlVetoClosingListener.showing(VetoableDockFrontendEvent event)
           
 void ControlVetoClosingListener.shown(VetoableDockFrontendEvent event)
           
 

Uses of VetoableDockFrontendEvent in bibliothek.gui.dock.event
 

Methods in bibliothek.gui.dock.event with parameters of type VetoableDockFrontendEvent
 void VetoableDockFrontendAdapter.hidden(VetoableDockFrontendEvent event)
           
 void VetoableDockFrontendListener.hidden(VetoableDockFrontendEvent event)
          Called whenever a set of Dockable was hidden.
 void VetoableDockFrontendAdapter.hiding(VetoableDockFrontendEvent event)
           
 void VetoableDockFrontendListener.hiding(VetoableDockFrontendEvent event)
          Called before a set of Dockables is hidden.
 void VetoableDockFrontendAdapter.showing(VetoableDockFrontendEvent event)
           
 void VetoableDockFrontendListener.showing(VetoableDockFrontendEvent event)
          Called before a Dockable is shown.
 void VetoableDockFrontendAdapter.shown(VetoableDockFrontendEvent event)
           
 void VetoableDockFrontendListener.shown(VetoableDockFrontendEvent event)
          Called whenever a Dockable was shown.