1 25 42 package org.jgrapht.graph; 43 44 import org.jgrapht.*; 45 46 47 52 public class ListenableUndirectedGraph<V, E> 53 extends DefaultListenableGraph<V, E> 54 implements UndirectedGraph<V, E> 55 { 56 57 59 private static final long serialVersionUID = 3256999969193145905L; 60 61 63 68 public ListenableUndirectedGraph(Class <? extends E> edgeClass) 69 { 70 this(new SimpleGraph<V, E>(edgeClass)); 71 } 72 73 78 public ListenableUndirectedGraph(UndirectedGraph<V, E> base) 79 { 80 super(base); 81 } 82 } 83 | Popular Tags |