Uses of Interface
scratch.tom.simpleGraph.Graph

Packages that use Graph
scratch.tom.simpleGraph   
 

Uses of Graph in scratch.tom.simpleGraph
 

Classes in scratch.tom.simpleGraph that implement Graph
 class DefaultGraph<V,E extends Edge<V>>
          an example implementation of Graph
 

Methods in scratch.tom.simpleGraph with parameters of type Graph
static
<V,E extends DirectedEdge<V>>
void
GraphUtils.doSomethingThatNeedsDirectedGraph(Graph<V,E> graph)
           
static
<V,E extends Edge>
int
GraphUtils.getDegree(Graph<V,E> graph, V vertex)
           
static
<V,E extends Edge>
Collection<V>
GraphUtils.getNeighbors(Graph<V,E> graph, V vertex)
           
 void Main.needDirectedGraphHere(Graph<? extends Object,? extends DirectedEdge> directedGraph)