1 25 42 package org.jgrapht.graph; 43 44 import org.jgrapht.*; 45 46 47 51 public class SimpleDirectedGraph<V, E> 52 extends AbstractBaseGraph<V, E> 53 implements DirectedGraph<V, E> 54 { 55 56 58 private static final long serialVersionUID = 4049358608472879671L; 59 60 62 67 public SimpleDirectedGraph(Class <? extends E> edgeClass) 68 { 69 this(new ClassBasedEdgeFactory<V, E>(edgeClass)); 70 } 71 72 77 public SimpleDirectedGraph(EdgeFactory<V, E> ef) 78 { 79 super(ef, false, false); 80 } 81 } 82 | Popular Tags |