Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
org.objectstyle.ashwood.graph.DigraphIteration

Uses of DigraphIteration in org.objectstyle.ashwood.graph
 

Subinterfaces of DigraphIteration in org.objectstyle.ashwood.graph
 interface Digraph
           
 

Classes in org.objectstyle.ashwood.graph that implement DigraphIteration
 class DefaultDigraphIteration
           
 class FilterIteration
           
 class MapDigraph
           
 class ReversedDigraph
           
 class ReversedIteration
           
 

Fields in org.objectstyle.ashwood.graph declared as DigraphIteration
private  DigraphIteration StrongConnection.digraph
           
private  DigraphIteration StrongConnection.reverseDigraph
           
private  DigraphIteration StrongConnection.filteredDigraph
           
private  DigraphIteration ReversedIteration.wrappedIteration
           
private  DigraphIteration InOutBreadthFirstSearch.factory
           
private  DigraphIteration FilterIteration.digraph
           
protected  DigraphIteration DepthFirstSearch.factory
           
private  DigraphIteration DefaultDigraphIteration.digraph
           
private  DigraphIteration BreadthFirstSearch.factory
           
 

Methods in org.objectstyle.ashwood.graph with parameters of type DigraphIteration
static boolean GraphUtils.isConnected(DigraphIteration digraph, java.lang.Object firstVertex, int order)
           
static boolean GraphUtils.isStronglyConnected(DigraphIteration digraph, java.lang.Object firstVertex, int order)
           
static Digraph GraphUtils.transform(Digraph result, DigraphIteration source, org.apache.commons.collections.Transformer vertexTransform, org.apache.commons.collections.Transformer arcTransform)
           
static Digraph GraphUtils.merge(Digraph destination, DigraphIteration graphToMerge)
           
static java.util.Map GraphUtils.computeLevels(java.util.Map vertexLevelMap, DigraphIteration digraph, java.lang.Object root, boolean longest)
           
static java.util.Map GraphUtils.shiftLevelsDown(java.util.Map vertexLevelMap, DigraphIteration digraph, java.lang.Object root)
           
static java.util.List GraphUtils.findCycles(DigraphIteration graph)
           
 

Constructors in org.objectstyle.ashwood.graph with parameters of type DigraphIteration
StrongConnection(DigraphIteration digraph, CollectionFactory componentFactory)
           
ReversedIteration(DigraphIteration wrappedIteration)
           
InOutBreadthFirstSearch(DigraphIteration factory, java.lang.Object firstVertex)
           
FilterIteration(DigraphIteration digraph, org.apache.commons.collections.Predicate acceptVertex, org.apache.commons.collections.Predicate acceptArc)
           
DFSReverseTopologicalSort(DigraphIteration factory, java.lang.Object firstVertex)
           
DepthFirstStampSearch(DigraphIteration factory, java.lang.Object firstVertex)
           
DepthFirstSearch(DigraphIteration factory, java.lang.Object firstVertex)
           
DefaultDigraphIteration(DigraphIteration digraph)
           
BreadthFirstSearch(DigraphIteration factory, java.lang.Object firstVertex)
           
BreadthFirstSearch(DigraphIteration factory, java.lang.Object firstVertex, org.objectstyle.ashwood.util.Attribute level)
           
BreadthFirstSearch(DigraphIteration factory, java.util.Collection firstVertices)
           
BreadthFirstSearch(DigraphIteration factory, java.util.Collection firstVertices, org.objectstyle.ashwood.util.Attribute level)