All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class Graph.Graph

java.lang.Object
   |
   +----Graph.Graph

public class Graph
extends Object

Constructor Index

 o Graph()

Method Index

 o addEdge(Node, Node)
 o newNode()
 o nodes()
 o normalize()
Sort node lists in alphabetical order, to standardize.
 o rmEdge(Node, Node)
 o show(PrintStream)
Print a human-readable dump for debugging.

Constructors

 o Graph
 public Graph()

Methods

 o nodes
 public NodeList nodes()
 o newNode
 public Node newNode()
 o addEdge
 public void addEdge(Node from,
                     Node to)
 o rmEdge
 public void rmEdge(Node from,
                    Node to)
 o show
 public void show(PrintStream out)
Print a human-readable dump for debugging.

 o normalize
 public void normalize()
Sort node lists in alphabetical order, to standardize.


All Packages  Class Hierarchy  This Package  Previous  Next  Index