Uses of Interface
bibliothek.gui.dock.DockableProperty

Packages that use DockableProperty
bibliothek.gui   
bibliothek.gui.dock   
bibliothek.gui.dock.station   
bibliothek.gui.dock.station.flap   
bibliothek.gui.dock.station.screen   
bibliothek.gui.dock.station.split   
bibliothek.gui.dock.station.stack   
bibliothek.gui.dock.util   
 

Uses of DockableProperty in bibliothek.gui
 

Fields in bibliothek.gui declared as DockableProperty
private  DockableProperty DockFrontend.DockInfo.location
          The location of DockFrontend.DockInfo.dockable on the station named DockFrontend.DockInfo.root
 

Methods in bibliothek.gui that return DockableProperty
 DockableProperty DockStation.getDockableProperty(Dockable dockable)
          Gets precise information about the location of a child of this station.
 DockableProperty DockFrontend.DockInfo.getLocation()
          Gets the location of the element which it had the last time it was made invisible.
 

Methods in bibliothek.gui with parameters of type DockableProperty
 boolean DockStation.drop(Dockable dockable, DockableProperty property)
          Tries to add dockable to this station such that the location given by property is matched.
 void DockFrontend.DockInfo.setLocation(java.lang.String root, DockableProperty location)
          Sets the location of the element.
 

Uses of DockableProperty in bibliothek.gui.dock
 

Classes in bibliothek.gui.dock that implement DockableProperty
 class AbstractDockableProperty
          A simple implementation of DockableProperty which provides only the basic features.
 

Fields in bibliothek.gui.dock declared as DockableProperty
private  DockableProperty AbstractDockableProperty.successor
          The successor of this property
 

Methods in bibliothek.gui.dock that return DockableProperty
 DockableProperty DockablePropertyFactory.createProperty()
          Creates a new empty DockableProperty.
 DockableProperty AbstractDockableProperty.getSuccessor()
           
 DockableProperty DockableProperty.getSuccessor()
          Gets the property which should be used for the child of this dockable DockStation.
 DockableProperty PropertyTransformer.read(java.io.DataInputStream in)
          Reads a property which was earlier stored.
 

Methods in bibliothek.gui.dock with parameters of type DockableProperty
 void AbstractDockableProperty.setSuccessor(DockableProperty properties)
           
 void DockableProperty.setSuccessor(DockableProperty properties)
          Sets the property which will be used if this property was used and there is not yet a leaf in the tree of DockStations and Dockables reached.
For example: there is a DockStation root, a dockable DockStation node which is a child of root and a Dockable leaf which is a child of node.
A DockableProperty called one would describe the relationship between root and node.
 void PropertyTransformer.write(DockableProperty property, java.io.DataOutputStream out)
          Writes property and all its successors into out.
 

Uses of DockableProperty in bibliothek.gui.dock.station
 

Methods in bibliothek.gui.dock.station that return DockableProperty
 DockableProperty SplitDockStation.getDockableProperty(Dockable dockable)
           
 DockableProperty StackDockStation.getDockableProperty(Dockable dockable)
           
 DockableProperty FlapDockStation.getDockableProperty(Dockable dockable)
           
 DockableProperty ScreenDockStation.getDockableProperty(Dockable dockable)
           
 

Methods in bibliothek.gui.dock.station with parameters of type DockableProperty
 boolean SplitDockStation.drop(Dockable dockable, DockableProperty property)
           
 boolean StackDockStation.drop(Dockable dockable, DockableProperty property)
           
 boolean FlapDockStation.drop(Dockable dockable, DockableProperty property)
           
 boolean ScreenDockStation.drop(Dockable dockable, DockableProperty property)
           
 

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

Classes in bibliothek.gui.dock.station.flap that implement DockableProperty
 class FlapDockProperty
          FlapDockProperties are used on the FlapDockStation to determine the location of a Dockable.
 

Methods in bibliothek.gui.dock.station.flap that return DockableProperty
 DockableProperty FlapDockPropertyFactory.createProperty()
           
 

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

Classes in bibliothek.gui.dock.station.screen that implement DockableProperty
 class ScreenDockProperty
          This property is used on ScreenDockStations to determine the bounds of the dialogs.
 

Methods in bibliothek.gui.dock.station.screen that return DockableProperty
 DockableProperty ScreenDockPropertyFactory.createProperty()
           
 

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

Classes in bibliothek.gui.dock.station.split that implement DockableProperty
 class SplitDockProperty
          This property stores the location and the size of each child of a SplitDockStation.
 

Methods in bibliothek.gui.dock.station.split that return DockableProperty
 DockableProperty SplitDockPropertyFactory.createProperty()
           
 

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

Classes in bibliothek.gui.dock.station.stack that implement DockableProperty
 class StackDockProperty
          A StackDockProperty stores the location of a Dockable on a StackDockStation.
 

Methods in bibliothek.gui.dock.station.stack that return DockableProperty
 DockableProperty StackDockPropertyFactory.createProperty()
           
 

Uses of DockableProperty in bibliothek.gui.dock.util
 

Methods in bibliothek.gui.dock.util that return DockableProperty
static DockableProperty DockUtilities.getPropertyChain(Dockable dockable)
          Gets a DockableProperty which describes the path from the root to dockable.
static DockableProperty DockUtilities.getPropertyChain(DockStation ground, Dockable dockable)
          Creates a DockableProperty describing the path from ground to dockable.