org._3pq.jgrapht.graph
Class ListenableUndirectedGraph

java.lang.Object
  extended by org._3pq.jgrapht.graph.AbstractGraph
      extended by org._3pq.jgrapht.graph.GraphDelegator
          extended by org._3pq.jgrapht.graph.DefaultListenableGraph
              extended by 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 also ListenableGraph.

See Also:
DefaultListenableGraph, Serialized Form

Constructor Summary
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.UndirectedGraph
degreeOf
 
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
 

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.