Uses of Class
bibliothek.gui.dock.layout.DockLayoutComposition

Packages that use DockLayoutComposition
bibliothek.gui.dock.frontend   
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. 
 

Uses of DockLayoutComposition in bibliothek.gui.dock.frontend
 

Methods in bibliothek.gui.dock.frontend that return DockLayoutComposition
 DockLayoutComposition Setting.getRoot(String root)
          Gets the layout of a root.
 

Methods in bibliothek.gui.dock.frontend with parameters of type DockLayoutComposition
 void Setting.putRoot(String root, DockLayoutComposition layout)
          Stores the layout of a root.
 

Uses of DockLayoutComposition in bibliothek.gui.dock.layout
 

Methods in bibliothek.gui.dock.layout that return DockLayoutComposition
 DockLayoutComposition DockSituation.convert(DockElement element)
          Converts the layout of element and all its children into a DockLayoutComposition.
 DockLayoutComposition DockSituation.readComposition(DataInputStream in)
          Reads one DockLayoutComposition and all its children.
 DockLayoutComposition DockSituation.readCompositionXML(XElement element)
          Reads a DockLayoutComposition from an xml element.
 

Methods in bibliothek.gui.dock.layout that return types with arguments of type DockLayoutComposition
 List<DockLayoutComposition> DockLayoutComposition.getChildren()
          Gets the list of all known children of this composition.
 

Methods in bibliothek.gui.dock.layout with parameters of type DockLayoutComposition
 DockElement DockSituation.convert(DockLayoutComposition composition)
          Reads the contents of composition and creates a DockElement that matches the composition.
 void DockSituation.writeComposition(DockLayoutComposition composition, DataOutputStream out)
          Writes the contents of composition and all its children to out.
 void DockSituation.writeCompositionXML(DockLayoutComposition composition, XElement element)
          Writes the contents of composition into element without changing the attributes of element.
 

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