Uses of Class
com.javadocking.dock.Position

Packages that use Position
com.javadocking Contains the interfaces and implementations of the Java Docking library. 
com.javadocking.dock Contains the interfaces and implementations for docks. 
com.javadocking.model Contains the functionality for dock models and docking path models. 
 

Uses of Position in com.javadocking
 

Methods in com.javadocking with parameters of type Position
 boolean DockingExecutor.changeDocking(Dockable dockable, LeafDock destinationDock, Position position)
           Changes the docking of the dockable to the given position in the given destination leaf dock.
 

Uses of Position in com.javadocking.dock
 

Fields in com.javadocking.dock declared as Position
static Position SingleDock.SINGLE_POSITION
          The only position for a dockable docked in his dock.
 

Methods in com.javadocking.dock that return Position
 Position CompositeDock.getChildDockPosition(Dock childDock)
          Gets the position, where the child dock is docked in this dock.
 Position CompositeLineDock.getChildDockPosition(Dock childDock)
           
 Position CompositeGridDock.getChildDockPosition(Dock childDock)
           
 Position FloatDock.getChildDockPosition(Dock childDock)
           
 Position BorderDock.getChildDockPosition(Dock childDock)
           
 Position SplitDock.getChildDockPosition(Dock childDock)
           
 Position SingleDock.getDockablePosition(Dockable childDockable)
           
 Position LineDock.getDockablePosition(Dockable dockable)
           
 Position GridDock.getDockablePosition(Dockable dockable)
           
 Position LeafDock.getDockablePosition(Dockable dockable)
          Gets the position where the dockable is docked in this dock.
 Position TabDock.getDockablePosition(Dockable dockable)
           
static Position Position.getPositionProperty(java.util.Properties properties, java.lang.String name, Position defaultValue)
          Gets the position property with the given name.
 

Methods in com.javadocking.dock with parameters of type Position
 void CompositeDock.addChildDock(Dock dock, Position position)
           Adds the given dock as child dock at the given position.
 void CompositeLineDock.addChildDock(Dock dock, Position position)
           
 void CompositeGridDock.addChildDock(Dock dock, Position position)
           
 void FloatDock.addChildDock(Dock dock, Position position)
          Adds the child dock to the given position.
 void BorderDock.addChildDock(Dock dock, Position position)
           Sets the given dock as child dock of this dock in the given position.
 void SplitDock.addChildDock(Dock dockToAdd, Position position)
           
 void SingleDock.addDockable(Dockable dockableToAdd, Position position)
           
 void LineDock.addDockable(Dockable dockable, Position position)
           
 void GridDock.addDockable(Dockable dockable, Position position)
           
 void LeafDock.addDockable(Dockable dockableToAdd, Position position)
           Adds the given dockable to this dock at the given position.
 void TabDock.addDockable(Dockable dockableToAdd, Position position)
           
static Position Position.getPositionProperty(java.util.Properties properties, java.lang.String name, Position defaultValue)
          Gets the position property with the given name.
static void Position.setPositionProperty(java.util.Properties properties, java.lang.String name, Position value)
          Adds the position property with the given name and value to the given properties.
 

Uses of Position in com.javadocking.model
 

Methods in com.javadocking.model that return Position
 Position DefaultDockingPath.getPositionInDock(int index)
           
 Position DockingPath.getPositionInDock(int index)
          Gets the position of the dockable or child dock in the dock with the given index in the path.
 

Constructors in com.javadocking.model with parameters of type Position
DefaultDockingPath(java.lang.String id, java.lang.String rootDockKey, Dock[] docks, Position[] positions)
          Constructs a docking path with the given properties.