| java.lang.Object org.geotools.graph.structure.basic.BasicGraph org.geotools.graph.structure.basic.BasicDirectedGraph
BasicDirectedGraph | public class BasicDirectedGraph extends BasicGraph implements DirectedGraph(Code) | | Basic implementation of DirectedGraph.
author: Justin Deoliveira, Refractions Research Inc, jdeolive@refractions.net |
Constructor Summary | |
public | BasicDirectedGraph(Collection nodes, Collection edges) Creates a directed graph from a collection of directed nodes and a
collection of directed edges.
The relationships between the nodes (edges) are already assumed to be
formed. |
BasicDirectedGraph | public BasicDirectedGraph(Collection nodes, Collection edges)(Code) | | Creates a directed graph from a collection of directed nodes and a
collection of directed edges.
The relationships between the nodes (edges) are already assumed to be
formed. Only the references to the node and edge collections are copied,
not the underlying collections themselves.
Parameters: nodes - Collection of DirectedNode objects contained by the graph. Parameters: edges - Collection of DirectedEdge objects contained by the graph. |
|
|