Uses of Class
de.cau.cs.kieler.core.slimgraph.KSlimEdge

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

Uses of KSlimEdge in de.cau.cs.kieler.core.slimgraph
 

Methods in de.cau.cs.kieler.core.slimgraph that return KSlimEdge
 KSlimEdge KSlimEdge.Bend.getEdge()
          Returns the slim edge associated with this bend.
 KSlimEdge KSlimFace.BorderEntry.getEdge()
          Returns the edge.
 KSlimEdge KSlimNode.IncEntry.getEdge()
          Returns the edge.
 

Methods in de.cau.cs.kieler.core.slimgraph that return types with arguments of type KSlimEdge
 List<KSlimEdge> KSlimGraph.getEdges()
          Returns the edges.
 

Methods in de.cau.cs.kieler.core.slimgraph with parameters of type KSlimEdge
 ListIterator<KSlimFace.BorderEntry> KSlimFace.getIterator(KSlimEdge edge, boolean forward)
          Gets a list iterator with the current position at the given edge.
 ListIterator<KSlimNode.IncEntry> KSlimNode.getIterator(KSlimEdge edge, boolean outgoing)
          Gets a list iterator for this node's incidence list, with the current position at the given edge.
 

Constructors in de.cau.cs.kieler.core.slimgraph with parameters of type KSlimEdge
KSlimEdge.Bend(KSlimEdge theedge, KSlimEdge.Bend.Type thetype)
          Creates an edge bend of given type.
KSlimFace.BorderEntry(KSlimEdge theedge, boolean theforward)
          Creates a border entry for the given edge.
KSlimNode.IncEntry(KSlimEdge theedge, KSlimNode.IncEntry.Type thetype)
          Creates an incidence list entry.
 

Uses of KSlimEdge in de.cau.cs.kieler.core.slimgraph.alg
 

Methods in de.cau.cs.kieler.core.slimgraph.alg that return types with arguments of type KSlimEdge
 List<KSlimEdge> AbstractCycleRemover.getReversedEdges()
          Returns the list of edges that were reversed for cycle removal.
 List<KSlimEdge> ICycleRemover.getReversedEdges()
          Returns the list of edges that were reversed for cycle removal.
 

Method parameters in de.cau.cs.kieler.core.slimgraph.alg with type arguments of type KSlimEdge
protected  void AbstractCycleRemover.setReversedEdges(LinkedList<KSlimEdge> thereversedEdges)
          Sets the reversed edges.
 

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

Methods in de.cau.cs.kieler.klodd.hierarchical.structures that return types with arguments of type KSlimEdge
 List<KSlimEdge> LayerElement.getOutgoingEdges()
          Gets the outgoing edges of the contained object.