1 25 41 package org.jgrapht.graph; 42 43 import org.jgrapht.*; 44 45 46 51 public class UnmodifiableUndirectedGraph<V, E> 52 extends UnmodifiableGraph<V, E> 53 implements UndirectedGraph<V, E> 54 { 55 56 58 private static final long serialVersionUID = 3258134639355704624L; 59 60 62 69 public UnmodifiableUndirectedGraph(UndirectedGraph<V, E> g) 70 { 71 super(g); 72 } 73 } 74 | Popular Tags |