Uses of Class
jlink.flowchart.graph.JLVertexSet

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

Uses of JLVertexSet in jlink.flowchart.graph
 

Fields in jlink.flowchart.graph declared as JLVertexSet
 JLVertexSet DuplicateJLVertexException.duplicateVertexSet
          The JLVertexSet that holds the duplicated JLVertex.
protected  JLVertexSet JLGraph.vertices
          The complete set of vertices for this JLGraph
 

Methods in jlink.flowchart.graph that return JLVertexSet
 JLVertexSet JLGraph.getJLVertexSet()
          Used to retrieve a vertex set (JLVertexSet) from this JLGraph.
 JLVertexSet JLVertexSet.getJLVertices(java.lang.String vertexName)
          Get all JLVertex objects in the JLVertexSet that have the corresponding vertex name.
 

Methods in jlink.flowchart.graph with parameters of type JLVertexSet
 void JLGraph.setJLVertexSet(JLVertexSet vertexSet)
          Sets the vertex set of this JLGraph to a user defined JLVertexSet.
 

Constructors in jlink.flowchart.graph with parameters of type JLVertexSet
DuplicateJLVertexException(JLVertex duplicate, JLVertexSet duplicateSet)
          Thrown when a JLVertex is duplicated in appending to a JLVertexSet.
JLGraph(int graphType, JLVertexSet v, JLEdgeSet e)
          Fully customisable constructor for JLGraph.
JLGraph(JLVertexSet v, JLEdgeSet e)
          Creates a new instance of JLGraph with user defined vertices and edges.