1 25 43 package org.jgrapht.graph; 44 45 import org.jgrapht.*; 46 47 48 54 public class ListenableUndirectedWeightedGraph<V, E> 55 extends ListenableUndirectedGraph<V, E> 56 implements WeightedGraph<V, E> 57 { 58 59 61 private static final long serialVersionUID = 3690762799613949747L; 62 63 65 70 public ListenableUndirectedWeightedGraph(Class <? extends E> edgeClass) 71 { 72 this(new SimpleWeightedGraph<V, E>(edgeClass)); 73 } 74 75 80 public ListenableUndirectedWeightedGraph(WeightedGraph<V, E> base) 81 { 82 super((UndirectedGraph<V, E>) base); 83 } 84 } 85 | Popular Tags |