Uses of Interface
com.github.mike10004.xvfbmanager.TreeNode
-
-
Uses of TreeNode in com.github.mike10004.xvfbmanager
Classes in com.github.mike10004.xvfbmanager that implement TreeNode Modifier and Type Class Description classListTreeNode<T>Implementation of a tree node that uses an array list for its children.Methods in com.github.mike10004.xvfbmanager that return TreeNode Modifier and Type Method Description TreeNode<T>TreeNode. addChild(TreeNode<T> child)Adds a child to this node's children.TreeNode<T>ListTreeNode. getParent()TreeNode<T>TreeNode. getParent()Gets this node's parent.TreeNode<T>ListTreeNode. setParent(TreeNode<T> parent)TreeNode<T>TreeNode. setParent(TreeNode<T> parent)Sets the parent of a given node.Methods in com.github.mike10004.xvfbmanager that return types with arguments of type TreeNode Modifier and Type Method Description Iterable<TreeNode<T>>ListTreeNode. children()Iterable<TreeNode<T>>TreeNode. children()Gets an iterable of this node's childrenstatic <E> Function<TreeNode<E>,Iterable<TreeNode<E>>>TreeNode.Utils. childrenFunction()Creates and returns a new function that gets a node's children.static <E> Function<TreeNode<E>,Iterable<TreeNode<E>>>TreeNode.Utils. childrenFunction()Creates and returns a new function that gets a node's children.static <E> Function<TreeNode<E>,E>TreeNode.Utils. labelFunction()Creates and returns a new function that returns the label of a tree nodeOptional<TreeNode<XvfbController.XWindow>>DefaultXvfbController. pollForWindow(Predicate<XvfbController.XWindow> windowFinder, long intervalMs, int maxPollAttempts)Optional<TreeNode<XvfbController.XWindow>>XvfbController. pollForWindow(Predicate<XvfbController.XWindow> windowFinder, long intervalMs, int maxPollAttempts)static <E> com.google.common.graph.Traverser<TreeNode<E>>TreeNode.Utils. traverser()Creates and returns a new traverser instance.Methods in com.github.mike10004.xvfbmanager with parameters of type TreeNode Modifier and Type Method Description ListTreeNode<T>ListTreeNode. addChild(TreeNode<T> child)TreeNode<T>TreeNode. addChild(TreeNode<T> child)Adds a child to this node's children.TreeNode<T>ListTreeNode. setParent(TreeNode<T> parent)TreeNode<T>TreeNode. setParent(TreeNode<T> parent)Sets the parent of a given node.
-