Uses of Class
y25.base.LayerEdge

Packages that use LayerEdge
y25.base Lays out the framework for working with layered graphs. 
y25.layout Extends layered graphs with layout information. 
y25.view Enriches layered layout graphs with realizers and handles rendering through OpenGL. 
y25.view.realizer Implementations of realizers. 
 

Uses of LayerEdge in y25.base
 

Methods in y25.base that return LayerEdge
 LayerEdge LayeredGraph.createLayerEdge(Node source, Node target)
          Creates a new layer edge from the source to the target node.
 LayerEdge[] LayeredGraph.getLayerEdgeArray()
          Returns an array of all layer edges inside this LayeredGraph.
 LayerEdge LayerEdgeList.firstLayerEdge()
          Returns the first layeredge in this list, or null when the list is empty.
 LayerEdge LayerEdgeList.lastLayerEdge()
          Returns the last layeredge in this list, or null when the list is empty.
 LayerEdge LayerEdgeCursor.layerEdge()
          Returns the layer edge at the current location of the cursor.
 

Methods in y25.base with parameters of type LayerEdge
 void LayeredGraph.removeLayerEdge(LayerEdge layerEdge)
          Removes the passed layer edge from this LayeredGraph.
 

Constructors in y25.base with parameters of type LayerEdge
LayerEdgeList(LayerEdge e)
          Creates a list that is initialized with a single layeredge provided.
LayerEdgeList(LayerEdge[] layerEdges)
          Creates a list that is initialized with the layeredges provided by the given array of layeredges.
 

Uses of LayerEdge in y25.layout
 

Methods in y25.layout with parameters of type LayerEdge
 void LayeredLayoutGraph.removeLayerEdge(LayerEdge layerEdge)
          Removes the passed layer edge from this LayeredLayoutGraph.
 LayerEdgeLayout25D LayeredLayoutGraph.getLayout(LayerEdge layerEdge)
          Returns the layout associated with the given layer edge.
 

Uses of LayerEdge in y25.view
 

Methods in y25.view that return LayerEdge
 LayerEdge LayerEdgeRealizer25D.getLayerEdge()
          Returns the layer edge that has been bound to this realizer, or null if no layer edge has been bound yet.
 LayerEdge Graph25D.createLayerEdge(Node source, Node target)
          Creates a new layer edge from the source to the target node.
 

Methods in y25.view with parameters of type LayerEdge
 void LayerEdgeRealizer25D.bindLayerEdge(LayerEdge le)
          Binds this realizer to the passed layer edge.
 void Graph25D.removeLayerEdge(LayerEdge layerEdge)
          Removes the passed layer edge from this Graph25D.
 void Graph25D.setRealizer(LayerEdge layerEdge, LayerEdgeRealizer25D ler)
          Sets the passed layer edge's realizer to the passed layer edge realizer.
 LayerEdgeRealizer25D Graph25D.getRealizer(LayerEdge layerEdge)
          Returns the LayerEdgeRealizer25D that is associated with the passed layer edge.
 

Uses of LayerEdge in y25.view.realizer
 

Methods in y25.view.realizer that return LayerEdge
 LayerEdge PolyLineLayerEdgeRealizer25D.getLayerEdge()
           
 LayerEdge DummyLayerEdgeRealizer25D.getLayerEdge()
           
 

Methods in y25.view.realizer with parameters of type LayerEdge
 void PolyLineLayerEdgeRealizer25D.bindLayerEdge(LayerEdge le)
           
 void DummyLayerEdgeRealizer25D.bindLayerEdge(LayerEdge le)