/* ========================================== * JGraphT : a free Java graph-theory library * ========================================== * * Project Info: http://jgrapht.sourceforge.net/ * Project Creator: Barak Naveh (http://sourceforge.net/users/barak_naveh) * * (C) Copyright 2003-2008, by Barak Naveh and Contributors. * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library; if not, write to the Free Software Foundation, * Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. */ /* ------------------- * GraphGenerator.java * ------------------- * (C) Copyright 2003-2008, by John V. Sichi and Contributors. * * Original Author: John V. Sichi * Contributor(s): - * * $Id: GraphGenerator.java 645 2008-09-30 19:44:48Z perfecthash $ * * Changes * ------- * 16-Sep-2003 : Initial revision (JVS); * */ package edu.nd.nina.generate; import java.util.*; import edu.nd.nina.*; /** * GraphGenerator defines an interface for generating new graph structures. * * @author John V. Sichi * @since Sep 16, 2003 */ public interface GraphGenerator<V, E, T> { //~ Methods ---------------------------------------------------------------- /** * Generate a graph structure. The topology of the generated graph is * dependent on the implementation. For graphs in which not all vertices * share the same automorphism equivalence class, the generator may produce * a labeling indicating the roles played by generated elements. This is the * purpose of the resultMap parameter. For example, a generator for a wheel * graph would designate a hub vertex. Role names used as keys in resultMap * should be declared as public static final Strings by implementation * classes. * * @param target receives the generated edges and vertices; if this is * non-empty on entry, the result will be a disconnected graph since * generated elements will not be connected to existing elements * @param vertexFactory called to produce new vertices * @param resultMap if non-null, receives implementation-specific mappings * from String roles to graph elements (or collections of graph elements) */ public void generateGraph( Graph<V, E> target, VertexFactory<V> vertexFactory, Map<String, T> resultMap); } // End GraphGenerator.java