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