1 /*
2 * Copyright (c) 2003, The JUNG Authors
3 *
4 * All rights reserved.
5 *
6 * This software is open-source under the BSD license; see either
7 * "license.txt" or
8 * https://github.com/jrtom/jung/blob/master/LICENSE for a description.
9 */
10 package edu.uci.ics.jung.algorithms.generators;
11
12 import com.google.common.base.Supplier;
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 Supplier<Graph<V,E>>{ }
21