package graph; /** * Created with MONSTER. * User: xgiovio * Date: 20/05/2014 * Time: 19:59 */ public interface DirectedGraph extends Graph{ public boolean isDirected(Edge e); public Edge insertDirectedEdge(Vertex u, Vertex v, V o); }