1 25 43 package org.jgrapht.graph; 44 45 import org.jgrapht.*; 46 47 48 53 public class ListenableDirectedWeightedGraph<V, E> 54 extends ListenableDirectedGraph<V, E> 55 implements WeightedGraph<V, E> 56 { 57 58 60 private static final long serialVersionUID = 3977582476627621938L; 61 62 64 69 public ListenableDirectedWeightedGraph(Class <? extends E> edgeClass) 70 { 71 this(new DefaultDirectedWeightedGraph<V, E>(edgeClass)); 72 } 73 74 79 public ListenableDirectedWeightedGraph(WeightedGraph<V, E> base) 80 { 81 super((DirectedGraph<V, E>) base); 82 } 83 } 84 | Popular Tags |