Uses of Class
salvo.jesus.graph.algorithm.GraphTraversal

Packages that use GraphTraversal
salvo.jesus.graph   
salvo.jesus.graph.algorithm   
 

Uses of GraphTraversal in salvo.jesus.graph
 

Fields in salvo.jesus.graph declared as GraphTraversal
protected  GraphTraversal GraphImpl.traversal
          Delegate object for implementing graph traversal.
 

Methods in salvo.jesus.graph that return GraphTraversal
 GraphTraversal GraphImpl.getTraversal()
          Gets the traversal algorithm used by the Graph.
 GraphTraversal Graph.getTraversal()
          Gets the traversal algorithm used by the Graph.
 GraphTraversal DirectedGraphWeakImpl.getTraversal()
          Empty method implemetation that returns null.
 

Methods in salvo.jesus.graph with parameters of type GraphTraversal
 void GraphImpl.setTraversal(GraphTraversal traversal)
          Sets the graph traversal algorithm to be used
 void Graph.setTraversal(GraphTraversal traversal)
          Sets the graph traversal algorithm to be used
 void DirectedGraphWeakImpl.setTraversal(GraphTraversal traversal)
          Empty method implemetation that returns null.
 

Uses of GraphTraversal in salvo.jesus.graph.algorithm
 

Subclasses of GraphTraversal in salvo.jesus.graph.algorithm
 class BreadthFirstTraversal
          A concrete subclass of GraphTraversal that uses breadth-first search in traversing a graph.
 class DepthFirstDirectedGraphTraversal
          A concrete subclass of GraphTraversal that uses depth-first search in traversing a directed graph.
 class DepthFirstGraphTraversal
          A concrete subclass of GraphTraversal that uses depth-first search in traversing a graph.
 class TopologicalSorting
          A concrete subclass of GraphTraversal that performs a topological sort against a directed acyclic graph.