|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
A generalized graph which consists of an ArchetypeVertex
set and an ArchetypeEdge
set.
This interface permits, but does not enforce, any of the following common variations of graphs:
ArchetypeGraph
may enforce or disallow any or all of these variations.
A graph consists of a set of vertices, and a set of edges. Each edge
connects a set of vertices.
For details on the process of adding vertices and edges to a graph,
see the documentation for ArchetypeVertex
and
ArchetypeEdge
.
The implementations of the graph, vertex and edge classes are responsible for ensuring that their individual bookkeeping information is kept mutually consistent. (For instance, a sparse graph implementation may have separate references to a single edge stored in each of its incident vertices and in the graph itself. If the edge is removed from the graph, each of these references must also be removed to maintain consistency.)
ArchetypeEdge
,
ArchetypeVertex
Nested Class Summary |
Nested classes inherited from class edu.uci.ics.jung.utils.UserDataContainer |
UserDataContainer.CopyAction |
Field Summary | |
static java.lang.String |
SUBSET_MANAGER
|
Method Summary | |
void |
addListener(GraphEventListener gel,
GraphEventType get)
Tells the graph to add gel as a listener for changes in the graph structure |
ArchetypeGraph |
copy()
Performs a deep copy of the graph and its contents. |
java.util.Collection |
getEdgeConstraints()
Returns the Collection of requirements that each edge
must satisfy when it is added to this graph. |
java.util.Set |
getEdges()
Returns a Set view of all edges in this graph. |
java.util.Collection |
getVertexConstraints()
Returns the Collection of constraints that each vertex
must satisfy when it is added to this graph. |
java.util.Set |
getVertices()
Returns a Set view of all vertices in this graph. |
ArchetypeGraph |
newInstance()
Returns a graph of the same type as the graph on which this method is invoked. |
int |
numEdges()
Returns the number of edges in this graph. |
int |
numVertices()
Returns the number of vertices in this graph. |
void |
removeAllEdges()
Removes all edges from this graph, leaving the vertices intact. |
void |
removeAllVertices()
Removes all vertices (and, therefore, edges) from this graph. |
void |
removeEdges(java.util.Set edges)
Removes all elements of edges from this graph.
|
void |
removeListener(GraphEventListener gel,
GraphEventType get)
Tells the graph to remove gel as a listener for changes in the graph structure |
void |
removeVertices(java.util.Set vertices)
Removes all elements of vertices from this graph.
|
Methods inherited from interface edu.uci.ics.jung.utils.UserDataContainer |
addUserDatum, containsUserDatumKey, getUserDatum, getUserDatumCopyAction, getUserDatumKeyIterator, importUserData, removeUserDatum, setUserDatum |
Field Detail |
public static final java.lang.String SUBSET_MANAGER
Method Detail |
public ArchetypeGraph newInstance()
public java.util.Set getVertices()
public java.util.Set getEdges()
public int numVertices()
public int numEdges()
public void removeVertices(java.util.Set vertices)
vertices
from this graph.
If any element of vertices
is not part of this graph,
then throws IllegalArgumentException
. If this
exception is thrown, any vertices that may have been removed already
are not guaranteed to be restored to the graph. Prunes any resultant
ill-formed edges.
vertices
- the set of vertices to be removed#removeVertex(ArchetypeVertex)
public void removeEdges(java.util.Set edges)
edges
from this graph.
If any element of edges
is not part of this graph,
then throws IllegalArgumentException
. If this
exception is thrown, any edges that may have been removed already
are not guaranteed to be restored to the graph.
public void removeAllEdges()
removeEdges(getEdges())
.
public void removeAllVertices()
removeVertices(getVertices())
.
public ArchetypeGraph copy()
public void addListener(GraphEventListener gel, GraphEventType get)
gel
- the graph event listenerget
- the type of graph events the listeners wants to listen forpublic void removeListener(GraphEventListener gel, GraphEventType get)
gel
- the graph event listenerget
- the type of graph events the listeners wants to not listen forpublic java.util.Collection getVertexConstraints()
Collection
of constraints that each vertex
must satisfy when it is added to this graph. This collection may
be viewed and modified by the user to add or remove constraints.
public java.util.Collection getEdgeConstraints()
Collection
of requirements that each edge
must satisfy when it is added to this graph. This collection may
be viewed and modified by the user to add or remove requirements.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |