1 25 41 package org.jgrapht.graph; 42 43 import org.jgrapht.*; 44 45 46 53 public class DirectedPseudograph<V, E> 54 extends AbstractBaseGraph<V, E> 55 implements DirectedGraph<V, E> 56 { 57 58 60 private static final long serialVersionUID = -8300409752893486415L; 61 62 64 67 public DirectedPseudograph(Class <? extends E> edgeClass) 68 { 69 this(new ClassBasedEdgeFactory<V, E>(edgeClass)); 70 } 71 72 75 public DirectedPseudograph(EdgeFactory<V, E> ef) 76 { 77 super(ef, true, true); 78 } 79 } 80 | Popular Tags |