Uses of Class
de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph.KSlimNode

Packages that use KSlimNode
de.cau.cs.kieler.klodd.hierarchical.structures The layered graph data structure used internally by the hierarchical dataflow layout algorithm. 
de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph Slim graph representation for undirected graphs, used in many graph algorithms. 
 

Uses of KSlimNode in de.cau.cs.kieler.klodd.hierarchical.structures
 

Methods in de.cau.cs.kieler.klodd.hierarchical.structures that return KSlimNode
 KSlimNode LayerElement.getKNode()
          Gets the KIELER node associated with this layer element.
 

Methods in de.cau.cs.kieler.klodd.hierarchical.structures with parameters of type KSlimNode
 LayerElement Layer.put(KGraphElement obj, KSlimNode kNode)
          Puts an object into this layer.
 void LayeredGraph.putBack(KGraphElement obj, int height, KSlimNode kNode)
          Put the given object into a layer with specified height.
 void LayeredGraph.putFront(KGraphElement obj, int rank, KSlimNode kNode)
          Put the given object into a layer with specified rank.
 

Constructors in de.cau.cs.kieler.klodd.hierarchical.structures with parameters of type KSlimNode
LayerElement(KGraphElement obj, Layer thelayer, KSlimNode thekNode)
          Creates a layer element in an existing layer.
 

Uses of KSlimNode in de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph
 

Methods in de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph that return KSlimNode
 KSlimNode KSlimNode.IncEntry.endpoint()
          Returns the endpoint of this incidence entry, as seen from the containing node.
 KSlimNode KSlimFace.BorderEntry.firstNode()
          Returns the first node encountered when traversing the edge in forward direction.
 KSlimNode KSlimEdge.getSource()
          Returns the source.
 KSlimNode KSlimEdge.getTarget()
          Returns the target.
 KSlimNode KSlimFace.BorderEntry.secondNode()
          Returns the second node encountered when traversing the edge in forward direction.
 

Methods in de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph that return types with arguments of type KSlimNode
 List<KSlimNode> KSlimGraph.getNodes()
          Returns the nodes.
 

Methods in de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph with parameters of type KSlimNode
 void KSlimEdge.setSource(KSlimNode thesource)
          Sets the source.
 void KSlimEdge.setTarget(KSlimNode thetarget)
          Sets the target.
 

Constructors in de.cau.cs.kieler.klodd.hierarchical.structures.slimgraph with parameters of type KSlimNode
KSlimEdge(KSlimGraph graph, KSlimNode thesource, KSlimNode thetarget)
          Creates an edge connecting two existing nodes.
KSlimEdge(KSlimGraph graph, KSlimNode thesource, KSlimNode thetarget, Object theobj)
          Creates an edge connecting two existing nodes, with an object to be contained.