Package org._3pq.jgrapht.graph
Class ListenableUndirectedGraph
- java.lang.Object
-
- org._3pq.jgrapht.graph.AbstractGraph
-
- org._3pq.jgrapht.graph.GraphDelegator
-
- org._3pq.jgrapht.graph.DefaultListenableGraph
-
- org._3pq.jgrapht.graph.ListenableUndirectedGraph
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,Graph
,ListenableGraph
,UndirectedGraph
- Direct Known Subclasses:
ListenableUndirectedWeightedGraph
public class ListenableUndirectedGraph extends DefaultListenableGraph implements UndirectedGraph
An undirected graph which is alsoListenableGraph
.- See Also:
DefaultListenableGraph
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListenableUndirectedGraph()
Creates a new listenable undirected simple graph.ListenableUndirectedGraph(UndirectedGraph base)
Creates a new listenable undirected graph.
-
Method Summary
-
Methods inherited from class org._3pq.jgrapht.graph.DefaultListenableGraph
addEdge, addEdge, addGraphListener, addVertex, addVertexSetListener, clone, fireEdgeAdded, fireEdgeRemoved, fireVertexAdded, fireVertexRemoved, isReuseEvents, removeEdge, removeEdge, removeGraphListener, removeVertex, removeVertexSetListener, setReuseEvents
-
Methods inherited from class org._3pq.jgrapht.graph.GraphDelegator
containsEdge, containsVertex, degreeOf, edgeSet, edgesOf, getAllEdges, getEdge, getEdgeFactory, incomingEdgesOf, inDegreeOf, outDegreeOf, outgoingEdgesOf, toString, vertexSet
-
Methods inherited from class org._3pq.jgrapht.graph.AbstractGraph
addAllEdges, addAllVertices, assertVertexExist, containsEdge, removeAllEdges, removeAllEdges, removeAllEdges, removeAllVertices, toStringFromSets
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org._3pq.jgrapht.Graph
addAllEdges, addAllVertices, addEdge, addEdge, addVertex, containsEdge, containsEdge, containsVertex, edgeSet, edgesOf, getAllEdges, getEdge, getEdgeFactory, removeAllEdges, removeAllEdges, removeAllVertices, removeEdge, removeEdge, removeVertex, vertexSet
-
Methods inherited from interface org._3pq.jgrapht.UndirectedGraph
degreeOf
-
-
-
-
Constructor Detail
-
ListenableUndirectedGraph
public ListenableUndirectedGraph()
Creates a new listenable undirected simple graph.
-
ListenableUndirectedGraph
public ListenableUndirectedGraph(UndirectedGraph base)
Creates a new listenable undirected graph.- Parameters:
base
- the backing graph.
-
-