Uses of Interface
bibliothek.gui.dock.layout.DockLayout

Packages that use DockLayout
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.dockable Some classes related to Dockable
bibliothek.gui.dock.layout Elements dealing with the location of Dockables on their DockStation and allowing to store the whole layout of a set of Dockables and stations. 
bibliothek.gui.dock.station.flap Elements that are related to the FlapDockStation
bibliothek.gui.dock.station.screen Elements that are related to the ScreenDockStation
bibliothek.gui.dock.station.split Elements which are needed by the SplitDockStation, and which are needed to interact with the station. 
bibliothek.gui.dock.station.stack Elements which are related to the StackDockStation
 

Uses of DockLayout in bibliothek.gui
 

Methods in bibliothek.gui with type parameters of type DockLayout
static
<D extends DockStation,L extends DockLayout>
void
DockUI.updateTheme(D station, DockFactory<D,L> factory)
          Removes all children of station and then adds the children again.
 

Method parameters in bibliothek.gui with type arguments of type DockLayout
 void DockFrontend.registerFactory(DockFactory<? extends DockElement,? extends DockLayout> factory)
          Registers a factory to write and read Dockables and DockStations
 

Uses of DockLayout in bibliothek.gui.dock
 

Classes in bibliothek.gui.dock with type parameters of type DockLayout
 interface DockFactory<D extends DockElement,L extends DockLayout>
          A DockFactory can convert the contents of a DockElement in a persistent form.
Some kind of DockElement will be converted into a DockLayout, this layout can then be written into a stream.
 

Uses of DockLayout in bibliothek.gui.dock.dockable
 

Classes in bibliothek.gui.dock.dockable that implement DockLayout
static class DefaultDockableFactory.DefaultDockLayout
          A simple layout that does not store any information.
 

Uses of DockLayout in bibliothek.gui.dock.layout
 

Methods in bibliothek.gui.dock.layout that return DockLayout
 DockLayout DockLayoutComposition.getLayout()
          Gets the layout which describes the element of this composition.
 

Methods in bibliothek.gui.dock.layout that return types with arguments of type DockLayout
protected  DockFactory<? extends DockElement,? extends DockLayout> PredefinedDockSituation.getFactory(String id)
           
 

Constructors in bibliothek.gui.dock.layout with parameters of type DockLayout
DockLayoutComposition(DockLayout layout, List<DockLayoutComposition> children, boolean ignoreChildren)
          Creates a new composition.
 

Uses of DockLayout in bibliothek.gui.dock.station.flap
 

Classes in bibliothek.gui.dock.station.flap that implement DockLayout
 class FlapDockStationLayout
          A layout describing the content of a FlapDockStation.
 

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

Classes in bibliothek.gui.dock.station.screen that implement DockLayout
 class ScreenDockStationLayout
          A layout that holds the contents of a ScreenDockStation.
 

Uses of DockLayout in bibliothek.gui.dock.station.split
 

Classes in bibliothek.gui.dock.station.split that implement DockLayout
 class SplitDockStationLayout
          A layout storing the contents of a SplitDockStation.
 

Uses of DockLayout in bibliothek.gui.dock.station.stack
 

Classes in bibliothek.gui.dock.station.stack that implement DockLayout
 class StackDockStationLayout
          A layout of a StackDockStation, stores the order of all Dockables on the station.