Uses of Class
de.cau.cs.kieler.klay.force.graph.FNode

Packages that use FNode
de.cau.cs.kieler.klay.force.graph Basic structures for the force layouter. 
 

Uses of FNode in de.cau.cs.kieler.klay.force.graph
 

Methods in de.cau.cs.kieler.klay.force.graph that return FNode
 FNode FNode.getParent()
          Returns the parent node.
 FNode FEdge.getSource()
          Returns the source node.
 FNode FEdge.getTarget()
          Returns the target node.
 

Methods in de.cau.cs.kieler.klay.force.graph that return types with arguments of type FNode
 List<FNode> FNode.getChildren()
          Returns the list of children, creating it if necessary.
 List<FNode> FGraph.getNodes()
          Returns the list of nodes for this graph.
 

Methods in de.cau.cs.kieler.klay.force.graph with parameters of type FNode
 void FEdge.setSource(FNode theSource)
          Sets the source vertex.
 void FEdge.setTarget(FNode theTarget)
          Sets the target vertex.
 

Constructors in de.cau.cs.kieler.klay.force.graph with parameters of type FNode
FNode(String label, FNode theParent)
          Create a new node with given parent node.