Uses of Interface
bibliothek.gui.dock.util.WindowProvider

Packages that use WindowProvider
bibliothek.gui The high level interfaces of the framework and the most often used classes. 
bibliothek.gui.dock The five basic classes implementing Dockable and DockStation plus some supporting elements. 
bibliothek.gui.dock.security A package dealing with the issues of Applets and Wepstart-applications.
DockingFrames monitors mouse- and other events globally. 
bibliothek.gui.dock.station.screen Elements that are related to the ScreenDockStation
bibliothek.gui.dock.util Distribution of information in a global scale and methods available from everywhere. 
 

Uses of WindowProvider in bibliothek.gui
 

Methods in bibliothek.gui with parameters of type WindowProvider
 void DockFrontend.setOwner(WindowProvider owner)
          Sets the window which is used as root for any dialog, can be null.
 void DockController.setRootWindowProvider(WindowProvider window)
          Sets the provider which will be used to find a root window for this controller.
 

Constructors in bibliothek.gui with parameters of type WindowProvider
DockFrontend(DockController controller, WindowProvider owner)
          Constructs a new frontend, tries to set up a ScreenDockStationFactory and sets the root window of controller to owner.
DockFrontend(WindowProvider owner)
          Constructs a new frontend, creates a new controller.
 

Uses of WindowProvider in bibliothek.gui.dock
 

Methods in bibliothek.gui.dock that return WindowProvider
 WindowProvider ScreenDockStation.getProvider()
          Gets the provider which delivers window owners for the windows of this station.
 

Constructors in bibliothek.gui.dock with parameters of type WindowProvider
ScreenDockStation(WindowProvider owner)
          Constructs a new ScreenDockStation.
 

Uses of WindowProvider in bibliothek.gui.dock.security
 

Constructors in bibliothek.gui.dock.security with parameters of type WindowProvider
SecureScreenDockStation(WindowProvider owner)
          Creates a new factory.
SecureScreenDockStationFactory(WindowProvider owner)
          Creates a new factory.
 

Uses of WindowProvider in bibliothek.gui.dock.station.screen
 

Methods in bibliothek.gui.dock.station.screen that return WindowProvider
 WindowProvider ScreenDockStationFactory.getProvider()
          Gets the provider for windows, which will be used as owner for newly created dialogs.
 

Constructors in bibliothek.gui.dock.station.screen with parameters of type WindowProvider
ScreenDockStationFactory(WindowProvider owner)
          Constructs a factory
 

Uses of WindowProvider in bibliothek.gui.dock.util
 

Classes in bibliothek.gui.dock.util that implement WindowProvider
 class AbstractWindowProvider
          An implementation of WindowProvider which just adds support for WindowProviderListeners.
 class ComponentWindowProvider
          A window provider which just returns the ancestor window of some Component
 class DirectWindowProvider
          A window provider where the window can be set directly.
 class NullWindowProvider
          A window provider that never returns a window.
 class WindowProviderWrapper
          A wrapper around another WindowProvider, allows to exchange providers without the need to reattach WindowProviderListeners.
 

Methods in bibliothek.gui.dock.util that return WindowProvider
 WindowProvider WindowProviderWrapper.getDelegate()
          Gets the provider which is be used by this to find a window.
 

Methods in bibliothek.gui.dock.util with parameters of type WindowProvider
 void WindowProviderWrapper.setDelegate(WindowProvider delegate)
          Sets the provider which will be used to find a window.
 void WindowProviderListener.windowChanged(WindowProvider provider, Window window)
          Called when the providers window changed.