Uses of Interface
de.cau.cs.kieler.core.kgraph.KEdge

Packages that use KEdge
de.cau.cs.kieler.core.kgraph Base package for the KGraph data structure with its public API. 
de.cau.cs.kieler.core.kgraph.impl Internal implementation of the KGraph data structure. 
de.cau.cs.kieler.core.kgraph.util Utility classes for the KGraph data structure. 
de.cau.cs.kieler.kiml.layout.util Utility classes for automatic layout using KIML. 
de.cau.cs.kieler.klodd.hierarchical.structures The layered graph data structure used internally by the hierarchical dataflow layout algorithm. 
 

Uses of KEdge in de.cau.cs.kieler.core.kgraph
 

Methods in de.cau.cs.kieler.core.kgraph that return KEdge
 KEdge KGraphFactory.createKEdge()
          Returns a new object of class 'KEdge'.
 

Methods in de.cau.cs.kieler.core.kgraph that return types with arguments of type KEdge
 EList<KEdge> KPort.getEdges()
          Returns the value of the 'Edges' reference list.
 EList<KEdge> KNode.getIncomingEdges()
          Returns the value of the 'Incoming Edges' reference list.
 EList<KEdge> KNode.getOutgoingEdges()
          Returns the value of the 'Outgoing Edges' containment reference list.
 

Uses of KEdge in de.cau.cs.kieler.core.kgraph.impl
 

Classes in de.cau.cs.kieler.core.kgraph.impl that implement KEdge
 class KEdgeImpl
          An implementation of the model object 'KEdge'.
 

Fields in de.cau.cs.kieler.core.kgraph.impl with type parameters of type KEdge
protected  EList<KEdge> KPortImpl.edges
          The cached value of the 'Edges' reference list.
protected  EList<KEdge> KNodeImpl.incomingEdges
          The cached value of the 'Incoming Edges' reference list.
protected  EList<KEdge> KNodeImpl.outgoingEdges
          The cached value of the 'Outgoing Edges' containment reference list.
 

Methods in de.cau.cs.kieler.core.kgraph.impl that return KEdge
 KEdge KGraphFactoryImpl.createKEdge()
           
 

Methods in de.cau.cs.kieler.core.kgraph.impl that return types with arguments of type KEdge
 EList<KEdge> KPortImpl.getEdges()
           
 EList<KEdge> KNodeImpl.getIncomingEdges()
           
 EList<KEdge> KNodeImpl.getOutgoingEdges()
           
 

Uses of KEdge in de.cau.cs.kieler.core.kgraph.util
 

Methods in de.cau.cs.kieler.core.kgraph.util with parameters of type KEdge
 T KGraphSwitch.caseKEdge(KEdge object)
          Returns the result of interpreting the object as an instance of 'KEdge'.
 

Uses of KEdge in de.cau.cs.kieler.kiml.layout.util
 

Methods in de.cau.cs.kieler.kiml.layout.util that return KEdge
static KEdge KimlLayoutUtil.createInitializedEdge()
          Creates a KEdge, initializes some attributes, and returns it.
 

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

Methods in de.cau.cs.kieler.klodd.hierarchical.structures with parameters of type KEdge
 void LayerElement.addOutgoing(KEdge edge, LayerElement target)
          Adds a new cross-layer connection with given target.
 void LayerElement.addOutgoing(KEdge edge, LayerElement target, KPort sourcePort, KPort targetPort)
          Adds a new cross-layer connection with given target.
 

Constructors in de.cau.cs.kieler.klodd.hierarchical.structures with parameters of type KEdge
ElementLoop(KEdge theedge, LayerElement elem, KPort thesourcePort, KPort thetargetPort)
          Creates an element loop with given source and target port.
LayerConnection(KEdge theedge, LayerElement sourceElem, KPort thesourcePort, LayerElement targetElem, KPort thetargetPort)
          Creates a layer connection with given source and target.