Uses of Class
org.apache.myfaces.config.util.Vertex

Packages that use Vertex
org.apache.myfaces.config.util   
 

Uses of Vertex in org.apache.myfaces.config.util
 

Methods in org.apache.myfaces.config.util that return types with arguments of type Vertex
 List<Vertex<T>> Vertex.getDependencies()
          Get the list of dependencies.
 

Methods in org.apache.myfaces.config.util with parameters of type Vertex
 void Vertex.addDependency(Vertex<T> v)
          Add a dependecy to this Vertex.
 int Vertex.compareTo(Vertex<T> o)
          Used in the sort algorithm to sort all the Vertices so that they respect the ordinal they were given during the topological sort.
static
<T> void
DirectedAcyclicGraphVerifier.verify(Vertex<T> vertex)
          Verify that a vertex and its set of dependencies have no cycles.
 

Method parameters in org.apache.myfaces.config.util with type arguments of type Vertex
static
<T> int
DirectedAcyclicGraphVerifier.findVertex(List<Vertex<T>> vertexList, String name)
           
static
<T> void
DirectedAcyclicGraphVerifier.resetVertices(List<Vertex<T>> vertices)
          Resets all the vertices so that the visitation flags and indegrees are reset to their start values.
static
<T> void
DirectedAcyclicGraphVerifier.topologicalSort(List<Vertex<T>> vertices)
          Sort a set of vertices so that no dependency is before its vertex.
static
<T> void
DirectedAcyclicGraphVerifier.verify(List<Vertex<T>> vertices)
          Verify a set of vertices and all their dependencies have no cycles.
 



Copyright © 2014 The Apache Software Foundation. All rights reserved.