Uses of Interface
org.scijava.util.TreeNode
-
Packages that use TreeNode Package Description org.scijava.util -
-
Uses of TreeNode in org.scijava.util
Classes in org.scijava.util that implement TreeNode Modifier and Type Class Description classDefaultTreeNode<T>Default implementation ofTreeNode.Methods in org.scijava.util that return TreeNode Modifier and Type Method Description TreeNode<?>DefaultTreeNode. parent()TreeNode<?>TreeNode. parent()Gets the parent of this node.Methods in org.scijava.util that return types with arguments of type TreeNode Modifier and Type Method Description List<TreeNode<?>>DefaultTreeNode. children()List<TreeNode<?>>TreeNode. children()Gets the node's children.Methods in org.scijava.util with parameters of type TreeNode Modifier and Type Method Description voidDefaultTreeNode. setParent(TreeNode<?> parent)voidTreeNode. setParent(TreeNode<?> parent)Method parameters in org.scijava.util with type arguments of type TreeNode Modifier and Type Method Description default voidTreeNode. addChildren(List<? extends TreeNode<?>> nodes)Adds the given list of children to this node.Constructors in org.scijava.util with parameters of type TreeNode Constructor Description DefaultTreeNode(T data, TreeNode<?> parent)Creates a new tree node wrapping the given data, located in the tree beneath the specified parent.
-