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

Packages that use FocusRequest
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
 

Uses of FocusRequest in bibliothek.gui.dock.control
 

Methods in bibliothek.gui.dock.control with parameters of type FocusRequest
protected  Component DefaultFocusController.accept(FocusRequest request, Dockable dockable)
          Decides whether to execute or to refuse request.
 void DefaultFocusController.enqueue(FocusRequest request)
          Requests focus for the Component that is described by request.
protected  void DefaultFocusController.execute(FocusRequest request, Dockable dockable, Component component)
          Called if DefaultFocusController.accept(FocusRequest, Dockable) accepted request.
 

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

Classes in bibliothek.gui.dock.control.focus that implement FocusRequest
 class DefaultFocusRequest
          The default implementation of a FocusRequest, the kind of request clients usually will use.
 class EnsuringFocusRequest
          Ensures that either a DockTitle or child Component of the currently focused Dockable is focused.
 class RepeatingFocusRequest
          Ensures that a specific Component is focused by calling Component.requestFocus() multiple times.
 

Methods in bibliothek.gui.dock.control.focus that return FocusRequest
 FocusRequest DefaultFocusRequest.grant(Component component)
           
 FocusRequest EnsuringFocusRequest.grant(Component component)
           
 FocusRequest FocusRequest.grant(Component component)
          Called once this FocusRequest is granted, this request must now call a method like Component.requestFocusInWindow() on component.
 FocusRequest RepeatingFocusRequest.grant(Component component)