Uses of Class
org.wilmascope.forcelayout.Force

Packages that use Force
org.wilmascope.forcelayout   
 

Uses of Force in org.wilmascope.forcelayout
 

Subclasses of Force in org.wilmascope.forcelayout
 class DirectedField
          A force field that will force all directed edges to align themselves with its direction vector
 class FixedOrigin
          Force that attracts either one or all of the nodes to the centre of the graph space.
 class Origin
          Force that attracts either one or all of the nodes to the centre of the graph space.
 class Planar
           
 class Repulsion
          A repulsive (electrostatic style) force between all nodes.
 class RepulsionFADE
           
 class RepulsionlessSpring
          A Force for use by nodes connected by an edge.
 class RepulsionSpring
          A repulsive (electrostatic style) force between all nodes.
 class Spring
          A Force for use by nodes connected by an edge.
 

Methods in org.wilmascope.forcelayout that return Force
 Force ForceManager.createForce(java.lang.String forceType)
           
 Force ForceLayout.getForce(java.lang.String name)
          Get a reference to one of our forces by name
 

Methods in org.wilmascope.forcelayout that return types with arguments of type Force
 java.util.Collection<Force> ForceManager.getAvailableForces()
           
 

Methods in org.wilmascope.forcelayout with parameters of type Force
 void ForceLayout.addForce(Force force)
          Add a force to ForceLayout's list of forces to apply
 void ForceManager.addPrototypeForce(Force prototype)
           
 void ForceLayout.removeForce(Force force)
          Remove a force from ForceLayout's list of forces to apply
 

Constructors in org.wilmascope.forcelayout with parameters of type Force
ForceControlPanel(GraphControl.Cluster cluster, Force force)