1 25 42 package org.jgrapht.graph; 43 44 import org.jgrapht.*; 45 46 47 55 public class DefaultDirectedGraph<V, E> 56 extends AbstractBaseGraph<V, E> 57 implements DirectedGraph<V, E> 58 { 59 60 62 private static final long serialVersionUID = 3544953246956466230L; 63 64 66 71 public DefaultDirectedGraph(Class <? extends E> edgeClass) 72 { 73 this(new ClassBasedEdgeFactory<V, E>(edgeClass)); 74 } 75 76 81 public DefaultDirectedGraph(EdgeFactory<V, E> ef) 82 { 83 super(ef, false, true); 84 } 85 } 86 | Popular Tags |