Uses of Class
jlink.flowchart.graph.JLVertex

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

Uses of JLVertex in jlink.flowchart.graph
 

Fields in jlink.flowchart.graph declared as JLVertex
 JLVertex DuplicateJLVertexException.duplicateVertex
          JLVertex that is responsible for throwing this duplicate exception.
protected  JLVertex JLVertexPair.head
          The head vertex is the JLVertex that is attached to the arrow portion of a JLEdge.
 JLVertex IncompleteJLEdgeException.headVertex
           
protected  JLVertex JLEdge.headVertex
           
protected  JLVertex JLVertexPair.tail
          The tail vertex is the JLVertex that is attached to the tail portion of a JLEdge.
 JLVertex IncompleteJLEdgeException.tailVertex
           
protected  JLVertex JLEdge.tailVertex
           
 

Fields in jlink.flowchart.graph with type parameters of type JLVertex
protected  java.util.LinkedList<JLVertex> JLVertexSet.vertexSet
          The internal model of the JLVertexSet is a linked list.
 

Methods in jlink.flowchart.graph that return JLVertex
 JLVertex JLGraph.createJLVertex()
          Creates a JLVertex and registers it with this JLGraph while providing a handle to the calling program for the JLVertex that was created.
 JLVertex JLEdge.getHeadJLVertex()
           
 JLVertex JLVertexPair.getHeadJLVertex()
          Method to access the head vertex.
 JLVertex JLVertexSet.getJLVertex(int vertexID)
          Get the JLVertex with matching unique vertex ID.
 JLVertex JLEdge.getTailJLVertex()
           
 JLVertex JLVertexPair.getTailJLVertex()
          Method to access the tail vertex.
 

Methods in jlink.flowchart.graph that return types with arguments of type JLVertex
 java.util.LinkedList<JLVertex> JLVertexSet.getLinkedList()
          Accessor method for the internal data model of JLVertexSet.
 

Methods in jlink.flowchart.graph with parameters of type JLVertex
 void JLVertexSet.appendJLVertex(JLVertex v)
          Adds a JLVertex to this JLVertexSet.
 JLEdge JLGraph.createJLEdge(JLVertex headVertex, JLVertex tailVertex)
           
 void JLGraph.createJLVertex(JLVertex v)
          While this method can be useful to create a JLVertex and register it inside this JLGraph, it is not the preferred method to do so.
 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.
 JLEdgeSet JLEdgeSet.getJLEdges(JLVertex vertex, int vertexType)
          Returns a JLEdgeSet with all the edges that have this particular JLVertex as either a head or tail vertex.
 JLEdgeSet JLEdgeSet.getJLEdges(JLVertex headVertex, JLVertex tailVertex)
          Query the JLEdgeSet for all edges with the matching head and tail vertices.
 void JLEdgeSet.removeJLEdges(JLVertex vertex)
          Removes all JLEdge objects in this JLEdgeSet that have this JLVertex as either a head OR a tail vertex.
 void JLEdgeSet.removeJLEdges(JLVertex vertex, int vertexType)
          Removes all edges that possess this JLVertex as either a head or tail vertex.
 void JLEdgeSet.removeJLEdges(JLVertex headVertex, JLVertex tailVertex)
          Removes all JLEdge objects from JLEdgeSet that have both the head and tail vertices in common.
 void JLVertexSet.removeJLVertex(JLVertex v)
          Removes this JLVertex.
 void JLEdge.setHeadJLVertex(JLVertex v)
           
 void JLVertexPair.setHeadJLVertex(JLVertex v)
          Sets the head vertex of this ordered pair.
 void JLEdge.setTailJLVertex(JLVertex v)
           
 void JLVertexPair.setTailJLVertex(JLVertex v)
          Sets the tail vertex of this ordered pair.
 

Method parameters in jlink.flowchart.graph with type arguments of type JLVertex
 void JLVertexSet.mirrorJLVertexSet(java.util.LinkedList<JLVertex> vertices)
          Copies the provided linked list to the JLVertexSet internally stored linked list to use as the data model.
 

Constructors in jlink.flowchart.graph with parameters of type JLVertex
DuplicateJLVertexException(JLVertex duplicate, JLVertexSet duplicateSet)
          Thrown when a JLVertex is duplicated in appending to a JLVertexSet.
JLEdge(JLVertex headVertex, JLVertex tailVertex)
           
JLVertexPair(JLVertex headVertex, JLVertex tailVertex)
          Constructs a new JLVertexPair with corresponding head and tail vertices.
 

Constructor parameters in jlink.flowchart.graph with type arguments of type JLVertex
JLVertexSet(java.util.LinkedList<JLVertex> vertices)
          Creates a JLVertexSet with an externally provided linked list to copy another JLVertexSet