Uses of Interface
bibliothek.gui.dock.control.focus.FocusController

Packages that use FocusController
bibliothek.gui The high level interfaces of the framework and the most often used classes. 
bibliothek.gui.dock.common.intern Classes and interfaces used internally. 
bibliothek.gui.dock.control Classes responsible to handle some global task. 
bibliothek.gui.dock.control.focus The focus sub-system is responsible for transfering the focus to the currently active Dockable
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 FocusController in bibliothek.gui
 

Methods in bibliothek.gui that return FocusController
 FocusController DockController.getFocusController()
          Gets the manager which is responsible for transfering focus between Dockables.
 

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

Methods in bibliothek.gui.dock.common.intern with parameters of type FocusController
 FocusVetoListener.FocusVeto ControlVetoFocusListener.vetoFocus(FocusController controller, Dockable dockable)
           
 FocusVetoListener.FocusVeto ControlVetoFocusListener.vetoFocus(FocusController controller, DockTitle title)
           
 

Uses of FocusController in bibliothek.gui.dock.control
 

Classes in bibliothek.gui.dock.control that implement FocusController
 class DefaultFocusController
          Default implementation of FocusController.
 

Methods in bibliothek.gui.dock.control that return FocusController
 FocusController DefaultDockControllerFactory.createFocusController(DockController controller, ControllerSetupCollection setup)
           
 FocusController DockControllerFactory.createFocusController(DockController controller, ControllerSetupCollection setup)
          Creates the focus-controller of controller
 

Uses of FocusController in bibliothek.gui.dock.control.focus
 

Classes in bibliothek.gui.dock.control.focus that implement FocusController
 class AbstractFocusController
          Abstract implementation of FocusController offering methods to handle the listeners.
 

Methods in bibliothek.gui.dock.control.focus with parameters of type FocusController
 boolean DefaultFocusRequest.validate(FocusController controller)
           
 boolean EnsuringFocusRequest.validate(FocusController controller)
           
 boolean FocusRequest.validate(FocusController controller)
          Invoked by controller right before this request is processed.
 boolean RepeatingFocusRequest.validate(FocusController controller)
           
 

Uses of FocusController in bibliothek.gui.dock.event
 

Methods in bibliothek.gui.dock.event with parameters of type FocusController
 FocusVetoListener.FocusVeto FocusVetoListener.vetoFocus(FocusController controller, Dockable dockable)
          Invoked when the focus should change because the user did something with dockable.
 FocusVetoListener.FocusVeto FocusVetoListener.vetoFocus(FocusController controller, DockTitle title)
          Invoked when the focus should change because the user did something with title.