Uses of Class
jlink.flowchart.graph.JLEdge

Packages that use JLEdge
jlink.flowchart.graph Collection of classes to form a model of a graph structure. 
 

Uses of JLEdge in jlink.flowchart.graph
 

Fields in jlink.flowchart.graph declared as JLEdge
 JLEdge DuplicateJLEdgeException.duplicateJLEdge
           
 

Fields in jlink.flowchart.graph with type parameters of type JLEdge
protected  java.util.LinkedList<JLEdge> JLEdgeSet.edgeSet
          The inner data model of JLEdgeSet is a linked list with a JLEdge generic value.
 

Methods in jlink.flowchart.graph that return JLEdge
 JLEdge JLGraph.createJLEdge(JLVertex headVertex, JLVertex tailVertex)
           
 JLEdge JLEdgeSet.getJLEdge(int edgeID)
          Query the JLEdgeSet for a JLEdge with this edge ID.
 JLEdge JLEdgeSet.getJLEdge(int headVertexID, int tailVertexID)
          Query the JLEdgeSet for the first edge with the matching head and tail vertex IDs
 JLEdge JLEdgeSet.getJLEdge(JLVertex vertex, int vertexType)
          Returns the first matching JLEdge that has this particular JLVertex as either a head or tail vertex.
 JLEdge JLEdgeSet.getJLEdge(JLVertex headVertex, JLVertex tailVertex)
          Queries the JLEdgeSet for the first occurrence of a JLEdge with head and tail vertices matching the input parameters.
 JLEdge JLEdgeSet.getJLEdge(java.lang.String edgeName)
          Searches the JLEdgeSet for the first occurrence of a JLEdge who has a name equal to the parameter.
 JLEdge JLEdgeSet.getJLEdge(java.lang.String vertexName, int vertexType)
          Return the first JLEdge with a vertex (either head or tail) that has this name.
 JLEdge JLEdgeSet.getJLEdge(java.lang.String headVertexName, java.lang.String tailVertexName)
          Query the JLEdgeSet for the first edge with the matching head and tail vertex names
 

Methods in jlink.flowchart.graph that return types with arguments of type JLEdge
 java.util.LinkedList<JLEdge> JLEdgeSet.getLinkedList()
          Use this method to get the inner linked list of JLEdgeSet if you need it to mirror in another JLGraph for instance.
 

Methods in jlink.flowchart.graph with parameters of type JLEdge
 void JLVertex.addIncomingJLEdge(JLEdge incomingEdge)
           
 void JLVertex.addOutgoingJLEdge(JLEdge outgoingEdge)
           
 void JLEdgeSet.appendJLEdge(JLEdge e)
          Adds this JLEdge to the JLEdgeSet so that it can be included in the model.
 void JLEdgeSet.removeJLEdge(JLEdge e)
          Removes this JLEdge from this JLEdgeSet.
 

Method parameters in jlink.flowchart.graph with type arguments of type JLEdge
 void JLEdgeSet.mirrorJLEdgeSet(java.util.LinkedList<JLEdge> edges)
          This will make the internal linked list the same as the provided linked list so as to copy the internal data structure of another JLGraph.
 

Constructors in jlink.flowchart.graph with parameters of type JLEdge
DuplicateJLEdgeException(JLEdge duplicate, JLEdgeSet duplicateSet)
           
IncompleteJLEdgeException(JLEdge edge, int missingVertex)
           
 

Constructor parameters in jlink.flowchart.graph with type arguments of type JLEdge
JLEdgeSet(java.util.LinkedList<JLEdge> edges)
          Constructor to init this JLEdgeSet with the internal structure from another JLEdgeSet.