Uses of Class
org.wilmascope.graph.LayoutEngine

Packages that use LayoutEngine
org.wilmascope.columnlayout   
org.wilmascope.control   
org.wilmascope.dotlayout   
org.wilmascope.fastlayout   
org.wilmascope.forcelayout   
org.wilmascope.graph   
org.wilmascope.highdimensionlayout   
org.wilmascope.layoutregistry   
org.wilmascope.multiscalelayout   
 

Uses of LayoutEngine in org.wilmascope.columnlayout
 

Subclasses of LayoutEngine in org.wilmascope.columnlayout
 class ColumnLayout
          Column layout simply places each node in the cluster at the same x,y position as the root cluster but with the z determined by each node's stratum
 

Uses of LayoutEngine in org.wilmascope.control
 

Methods in org.wilmascope.control that return LayoutEngine
 LayoutEngine GraphControl.Cluster.getLayoutEngine()
           
 

Methods in org.wilmascope.control with parameters of type LayoutEngine
 void GraphControl.Cluster.setLayoutEngine(LayoutEngine layoutEngine)
           
 

Uses of LayoutEngine in org.wilmascope.dotlayout
 

Subclasses of LayoutEngine in org.wilmascope.dotlayout
 class DotLayout
          A layout engine which uses the dot program to find node and edge positions.
 

Uses of LayoutEngine in org.wilmascope.fastlayout
 

Subclasses of LayoutEngine in org.wilmascope.fastlayout
 class FastLayout
          Title: FastLayout Description: Wilma layout engine implementing a linear time fast force directed placement algorithm
 

Uses of LayoutEngine in org.wilmascope.forcelayout
 

Subclasses of LayoutEngine in org.wilmascope.forcelayout
 class ForceLayout
          Main class force for calculating forces on all nodes and moving them incrementally.
 

Uses of LayoutEngine in org.wilmascope.graph
 

Methods in org.wilmascope.graph that return LayoutEngine
 LayoutEngine Cluster.getLayoutEngine()
          Get the LayoutEngineused by the cluster
 

Methods in org.wilmascope.graph with parameters of type LayoutEngine
 void Cluster.setLayoutEngine(LayoutEngine l)
          Set the LayoutEnginefor the cluster
 

Uses of LayoutEngine in org.wilmascope.highdimensionlayout
 

Subclasses of LayoutEngine in org.wilmascope.highdimensionlayout
 class HighDimensionLayout
           
 

Uses of LayoutEngine in org.wilmascope.layoutregistry
 

Methods in org.wilmascope.layoutregistry that return LayoutEngine
 LayoutEngine LayoutManager.createLayout(java.lang.String layoutType)
           
 LayoutEngine[] LayoutManager.getAll()
           
 

Methods in org.wilmascope.layoutregistry with parameters of type LayoutEngine
 void LayoutManager.addPrototypeLayout(LayoutEngine prototype)
           
 

Uses of LayoutEngine in org.wilmascope.multiscalelayout
 

Subclasses of LayoutEngine in org.wilmascope.multiscalelayout
 class MultiScaleLayout
           Description: