Uses of Class
edu.unm.cs.cs351.tdrl.f07.p1.GraphStructureException

Uses of GraphStructureException in edu.unm.cs.cs351.tdrl.f07.p1
 

Methods in edu.unm.cs.cs351.tdrl.f07.p1 that throw GraphStructureException
 void Graph.addEdge(T from, T to)
          Insert a directed edge between two nodes.
 void CrawlState.addHref(String currURL, String hrefURL)
          Add a link between the current page and some page that it links to.
 int Graph.getNodeID(T node)
          Return a unique numeric ID code on the range [0,V-1] for the specified node.
 int Graph.neighborCount(T node)
          Get the number of neighbors of a target node.
 Set<T> Graph.neighborSet(T node)
          Returns an immutable set view of all of the neighbors of a fixed node in the graph.