Uses of Class
jlink.flowchart.graph.JLEdgeSet

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

Uses of JLEdgeSet in jlink.flowchart.graph
 

Fields in jlink.flowchart.graph declared as JLEdgeSet
 JLEdgeSet DuplicateJLEdgeException.duplicateJLEdgeSet
           
protected  JLEdgeSet JLGraph.edges
          The complete set of edges for this JLGraph.
protected  JLEdgeSet JLVertex.incoming
           
protected  JLEdgeSet JLVertex.outgoing
           
 

Methods in jlink.flowchart.graph that return JLEdgeSet
 JLEdgeSet JLEdgeSet.getJLEdges(int headVertexID, int tailVertexID)
          Query the JLEdgeSet for all edges with the matching head and tail vertex IDs
 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.
 JLEdgeSet JLEdgeSet.getJLEdges(java.lang.String edgeName)
          Returns all edges with the given edge name.
 JLEdgeSet JLEdgeSet.getJLEdges(java.lang.String vertexName, int vertexType)
          Return all JLEdge objects with a vertex (either head or tail) that has this name.
 JLEdgeSet JLEdgeSet.getJLEdges(java.lang.String headVertexName, java.lang.String tailVertexName)
          Query the JLEdgeSet for all edges with the matching head and tail vertex names
 JLEdgeSet JLGraph.getJLEdgeSet()
          Used to retrieve an edge set (JLEdgeSet) from this JLGraph.
 

Methods in jlink.flowchart.graph with parameters of type JLEdgeSet
 void JLGraph.setJLEdgeSet(JLEdgeSet edgeSet)
          Sets the JLEdgeSet of this JLGraph to the user defined edge set.
 

Constructors in jlink.flowchart.graph with parameters of type JLEdgeSet
DuplicateJLEdgeException(JLEdge duplicate, JLEdgeSet duplicateSet)
           
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.