Uses of Class
de.cau.cs.kieler.klodd.hierarchical.structures.LayerElement

Packages that use LayerElement
de.cau.cs.kieler.klodd.hierarchical.impl Implementation of the hierarchical dataflow layout algorithm. 
de.cau.cs.kieler.klodd.hierarchical.structures The layered graph data structure used internally by the hierarchical dataflow layout algorithm. 
 

Uses of LayerElement in de.cau.cs.kieler.klodd.hierarchical.impl
 

Methods in de.cau.cs.kieler.klodd.hierarchical.impl that return types with arguments of type LayerElement
 Map<LayerElement,Float> BasicNodePlacer.getElementSpacing()
          Gets a map for the amount of spacing available for each layer element.
 

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

Methods in de.cau.cs.kieler.klodd.hierarchical.structures that return LayerElement
 LayerElement LayeredGraph.getLayerElement(Object obj)
          Gets the layer element that holds the given object.
 LayerElement LayerConnection.getSourceElement()
          Gets the source element.
 LayerElement LayerConnection.getTargetElement()
          Gets the target element.
 LayerElement Layer.put(KGraphElement obj, KSlimNode kNode)
          Puts an object into this layer.
 

Methods in de.cau.cs.kieler.klodd.hierarchical.structures that return types with arguments of type LayerElement
 List<LayerElement> Layer.getElements()
          Gets the elements of this layer.
 List<LayerElement> LinearSegment.getElements()
          Returns the elements.
 

Methods in de.cau.cs.kieler.klodd.hierarchical.structures with parameters of type LayerElement
 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.
 boolean LinearSegment.hasFollowing(LayerElement elem)
          Determines whether the given element has following elements in this linear segment.
 boolean LinearSegment.hasPreceding(LayerElement elem)
          Determines whether the given element has preceding elements in this linear segment.
 

Constructors in de.cau.cs.kieler.klodd.hierarchical.structures with parameters of type LayerElement
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.