Uses of Class
org.testng.internal.Graph.Node
-
Packages that use Graph.Node Package Description org.testng.internal -
-
Uses of Graph.Node in org.testng.internal
Fields in org.testng.internal with type parameters of type Graph.Node Modifier and Type Field Description private java.util.Comparator<Graph.Node<T>>
Graph. comparator
private java.util.Map<T,Graph.Node<T>>
Graph. m_independentNodes
private java.util.Set<Graph.Node<T>>
Graph.Node. m_neighbors
private java.util.Map<T,Graph.Node<T>>
Graph. m_nodes
Methods in org.testng.internal that return Graph.Node Modifier and Type Method Description Graph.Node<T>
Graph.Node. clone()
private Graph.Node<T>
Graph. findNode(T object)
private Graph.Node<T>
Graph. findNodeWithNoPredecessors(java.util.List<Graph.Node<T>> nodes)
Methods in org.testng.internal that return types with arguments of type Graph.Node Modifier and Type Method Description private java.util.Collection<Graph.Node<T>>
Graph. getNodes()
Methods in org.testng.internal with parameters of type Graph.Node Modifier and Type Method Description void
Graph.Node. addNeighbor(Graph.Node<T> neighbor)
private void
Graph. removeFromNodes(java.util.List<Graph.Node<T>> nodes, Graph.Node<T> node)
Remove a node from a list of nodes and update the list of predecessors for all the remaining nodes.Method parameters in org.testng.internal with type arguments of type Graph.Node Modifier and Type Method Description private Graph.Node<T>
Graph. findNodeWithNoPredecessors(java.util.List<Graph.Node<T>> nodes)
private void
Graph. removeFromNodes(java.util.List<Graph.Node<T>> nodes, Graph.Node<T> node)
Remove a node from a list of nodes and update the list of predecessors for all the remaining nodes.Constructor parameters in org.testng.internal with type arguments of type Graph.Node Constructor Description Graph(java.util.Comparator<Graph.Node<T>> comparator)
-