Uses of Interface
baseCode.dataStructure.graph.Graph

Packages that use Graph
baseCode.dataStructure.graph   
 

Uses of Graph in baseCode.dataStructure.graph
 

Classes in baseCode.dataStructure.graph that implement Graph
 class AbstractGraph
           Copyright (c) Columbia University
 class DirectedGraph
          A graph that contains DirectedGraphNodes.
 

Fields in baseCode.dataStructure.graph declared as Graph
protected  Graph AbstractGraphNode.graph
           
 

Methods in baseCode.dataStructure.graph that return Graph
 Graph AbstractGraphNode.getGraph()
           
 Graph DirectedGraphNode.getChildGraph()
          Get the subgraph starting from this node, including this node.
 Graph GraphNode.getGraph()
           
 

Methods in baseCode.dataStructure.graph with parameters of type Graph
 void AbstractGraphNode.setGraph(Graph graph)
          Set the graph this belongs to.
 void GraphNode.setGraph(Graph graph)
           
 

Constructors in baseCode.dataStructure.graph with parameters of type Graph
AbstractGraphNode(java.lang.Object key, java.lang.Object value, Graph graph)
          Create a new node with key and value given.
DirectedGraphNode(java.lang.Object key, java.lang.Object value, Graph graph)
           
 



Copyright © 2003-2005 Columbia University. All Rights Reserved.