Fix checkstyle warnings in netconf-cli
[controller.git] / third-party / net.sf.jung2 / src / main / java / edu / uci / ics / jung / algorithms / generators / GraphGenerator.java
1 /*
2 * Copyright (c) 2003, the JUNG Project and the Regents of the University 
3 * of California
4 * All rights reserved.
5 *
6 * This software is open-source under the BSD license; see either
7 * "license.txt" or
8 * http://jung.sourceforge.net/license.txt for a description.
9 */
10 package edu.uci.ics.jung.algorithms.generators;
11
12 import org.apache.commons.collections15.Factory;
13
14 import edu.uci.ics.jung.graph.Graph;
15
16 /**
17  * An interface for algorithms that generate graphs.
18  * @author Scott White
19  */
20 public interface GraphGenerator<V, E> extends Factory<Graph<V,E>>{ }