View Javadoc
1   /*
2    * Created on Oct 17, 2005
3    *
4    * Copyright (c) 2005, The JUNG Authors 
5    *
6    * All rights reserved.
7    *
8    * This software is open-source under the BSD license; see either
9    * "license.txt" or
10   * https://github.com/jrtom/jung/blob/master/LICENSE for a description.
11   */
12  package edu.uci.ics.jung.graph;
13  
14  /**
15   * A tagging interface for implementations of <code>Graph</code> 
16   * that accept only directed edges.
17   * 
18   * @author Tom Nelson - tomnelson@dev.java.net
19   *
20   * @param <V>   type specification for vertices
21   * @param <E>   type specification for edges
22   */
23  public interface DirectedGraph<V,E> extends Graph<V,E> {
24  }