Uses of Interface
com.javadocking.model.DockingPath

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

Uses of DockingPath in com.javadocking
 

Methods in com.javadocking with parameters of type DockingPath
 boolean DockingExecutor.changeDocking(Dockable dockable, DockingPath dockingPath)
           Changes the docking of the dockable as good as possible with the information in the given docking path.
 

Uses of DockingPath in com.javadocking.model
 

Classes in com.javadocking.model that implement DockingPath
 class DefaultDockingPath
          This is the default implementation for a docking path.
 

Methods in com.javadocking.model that return DockingPath
 DockingPath DefaultDockingPathModel.getDockingPath(java.lang.String id)
           
 DockingPath DockingPathModel.getDockingPath(java.lang.String id)
          Gets the docking path of this model that has the given id as ID.
 

Methods in com.javadocking.model with parameters of type DockingPath
 void DefaultDockingPathModel.add(DockingPath dockingPath)
           
 void DockingPathModel.add(DockingPath dockingPath)
          Adds the given docking path to the model.
static DefaultDockingPath DefaultDockingPath.copyDockingPath(Dockable dockableForPath, DockingPath dockingPathToCopy)
          Creates a docking path for the given dockable, that is almost a copy of the given docking path.
 void DefaultDockingPathModel.remove(DockingPath dockingPath)
           
 void DockingPathModel.remove(DockingPath dockingPath)
          Removes the given docking path from the model.