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