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
 

Methods in bibliothek.gui that return DockableProperty
 DockableProperty DockStation.getDockableProperty(Dockable dockable)
          Gets precise information about the location of a child of this station.
 

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.
 

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.
 

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

Methods in bibliothek.gui.dock with parameters of type DockableProperty
 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.
 void AbstractDockableProperty.setSuccessor(DockableProperty properties)
           
 void PropertyTransformer.write(DockableProperty property, 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 StackDockStation.getDockableProperty(Dockable dockable)
           
 DockableProperty SplitDockStation.getDockableProperty(Dockable dockable)
           
 DockableProperty ScreenDockStation.getDockableProperty(Dockable dockable)
           
 DockableProperty FlapDockStation.getDockableProperty(Dockable dockable)
           
 

Methods in bibliothek.gui.dock.station with parameters of type DockableProperty
 boolean StackDockStation.drop(Dockable dockable, DockableProperty property)
           
 boolean SplitDockStation.drop(Dockable dockable, DockableProperty property)
           
 boolean ScreenDockStation.drop(Dockable dockable, DockableProperty property)
           
 boolean FlapDockStation.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.