Uses of Class
bibliothek.gui.dock.station.split.SplitDockTree.Key

Packages that use SplitDockTree.Key
bibliothek.gui.dock.station.split   
 

Uses of SplitDockTree.Key in bibliothek.gui.dock.station.split
 

Methods in bibliothek.gui.dock.station.split that return SplitDockTree.Key
 SplitDockTree.Key SplitDockTree.getBottom(SplitDockTree.Key key)
          Gets the bottom element of the node key.
 SplitDockTree.Key SplitDockTree.getLeft(SplitDockTree.Key key)
          Gets the left element of the node key.
 SplitDockTree.Key SplitDockTree.Key.getParent()
          Gets the parent of this node or leaf.
 SplitDockTree.Key SplitDockTree.getRight(SplitDockTree.Key key)
          Gets the right element of the node key.
 SplitDockTree.Key SplitDockTree.getRoot()
          Gets the root of the tree.
 SplitDockTree.Key SplitDockTree.getTop(SplitDockTree.Key key)
          Gets the top element of the node key.
 SplitDockTree.Key SplitDockTree.horizontal(Dockable left, Dockable right)
          Adds two elements horizontally.
 SplitDockTree.Key SplitDockTree.horizontal(Dockable left, Dockable right, double divider)
          Adds two elements horizontally.
 SplitDockTree.Key SplitDockTree.horizontal(SplitDockTree.Key left, SplitDockTree.Key right)
          Adds two elements horizontally.
 SplitDockTree.Key SplitDockTree.horizontal(SplitDockTree.Key left, SplitDockTree.Key right, double divider)
          Adds two elements horizontally.
 SplitDockTree.Key SplitDockTreeFactory.horizontal(SplitDockTree.Key left, SplitDockTree.Key right, double divider)
           
 SplitDockTree.Key SplitDockTreeFactory.leaf(Dockable dockable)
           
 SplitDockTree.Key SplitDockTree.put(Dockable... dockables)
          Creates a key for the set dockables.
 SplitDockTree.Key SplitDockTree.put(Dockable[] dockables, Dockable selected)
          Creates a key for the set dockables.
 SplitDockTree.Key SplitDockGrid.Node.put(SplitDockTree tree)
          Writes the contents of this node into tree.
 SplitDockTree.Key SplitDockTree.root(Dockable dockable)
          Sets dockable as root, and returns a key to the root.
 SplitDockTree.Key SplitDockTreeFactory.root(SplitDockTree.Key root)
           
 SplitDockTree.Key SplitDockTree.unroot()
          Removes the root of this tree.
 SplitDockTree.Key SplitDockTree.vertical(Dockable top, Dockable bottom)
          Adds two elements vertically.
 SplitDockTree.Key SplitDockTree.vertical(Dockable top, Dockable bottom, double divider)
          Adds two elements vertically.
 SplitDockTree.Key SplitDockTree.vertical(SplitDockTree.Key top, SplitDockTree.Key bottom)
          Adds two elements vertically.
 SplitDockTree.Key SplitDockTree.vertical(SplitDockTree.Key top, SplitDockTree.Key bottom, double divider)
          Adds two elements vertically.
 SplitDockTree.Key SplitDockTreeFactory.vertical(SplitDockTree.Key top, SplitDockTree.Key bottom, double divider)
           
 

Methods in bibliothek.gui.dock.station.split with parameters of type SplitDockTree.Key
protected  SplitNode SplitNode.create(SplitDockTree.Key key, boolean checkValidity)
          Creates a new node using the contents of key.
 void Leaf.evolve(SplitDockTree.Key key, boolean checkValidity)
           
 void Node.evolve(SplitDockTree.Key key, boolean checkValidity)
           
 void Root.evolve(SplitDockTree.Key key, boolean checkValidity)
           
abstract  void SplitNode.evolve(SplitDockTree.Key key, boolean checkValidity)
          Creates or replaces children according to the values found in key.
 SplitDockTree.Key SplitDockTree.getBottom(SplitDockTree.Key key)
          Gets the bottom element of the node key.
 double SplitDockTree.getDivider(SplitDockTree.Key key)
          Gets the divider of the node key.
 Dockable[] SplitDockTree.getDockables(SplitDockTree.Key key)
          Gets the elements that are represented by the leaf key.
 SplitDockTree.Key SplitDockTree.getLeft(SplitDockTree.Key key)
          Gets the left element of the node key.
 SplitDockTree.Key SplitDockTree.getRight(SplitDockTree.Key key)
          Gets the right element of the node key.
 Dockable SplitDockTree.getSelected(SplitDockTree.Key key)
          Gets the element that is selected in this leaf.
 SplitDockTree.Key SplitDockTree.getTop(SplitDockTree.Key key)
          Gets the top element of the node key.
 SplitDockTree.Key SplitDockTree.horizontal(SplitDockTree.Key left, SplitDockTree.Key right)
          Adds two elements horizontally.
 SplitDockTree.Key SplitDockTree.horizontal(SplitDockTree.Key left, SplitDockTree.Key right, double divider)
          Adds two elements horizontally.
 SplitDockTree.Key SplitDockTreeFactory.horizontal(SplitDockTree.Key left, SplitDockTree.Key right, double divider)
           
 boolean SplitDockTree.isDockable(SplitDockTree.Key key)
          Tells whether key represents a leaf or not.
 boolean SplitDockTree.isHorizontal(SplitDockTree.Key key)
          Tells whether the node key represents a horizontal or a vertical node.
 boolean SplitDockTree.isNode(SplitDockTree.Key key)
          Tells whether key represents a node or not.
 SplitDockTree SplitDockTree.root(SplitDockTree.Key key)
          Sets key as the root of the tree.
 SplitDockTree.Key SplitDockTreeFactory.root(SplitDockTree.Key root)
           
 SplitDockTree.Key SplitDockTree.vertical(SplitDockTree.Key top, SplitDockTree.Key bottom)
          Adds two elements vertically.
 SplitDockTree.Key SplitDockTree.vertical(SplitDockTree.Key top, SplitDockTree.Key bottom, double divider)
          Adds two elements vertically.
 SplitDockTree.Key SplitDockTreeFactory.vertical(SplitDockTree.Key top, SplitDockTree.Key bottom, double divider)