Uses of Class
ch.ivyteam.ivy.scripting.objects.Tree
Packages that use Tree
-
Uses of Tree in ch.ivyteam.ivy.application.calendar
Methods in ch.ivyteam.ivy.application.calendar that return TreeModifier and TypeMethodDescriptionIBusinessCalendarSettings.getAllBusinessCalendarConfigurations()Returns an Tree containing allIBusinessCalendarConfigurations -
Uses of Tree in ch.ivyteam.ivy.scripting.objects
Methods in ch.ivyteam.ivy.scripting.objects that return TreeModifier and TypeMethodDescriptionTree.clone()Clones this tree (shallow copy).Tree.createChild(Object newValue) Adds a child to this node.Tree.createChild(Object newValue, String newInfo) Adds a child to this node.Tree.createChildAt(int index, Object newValue) Inserts a child into the childrenlist of this node.Tree.createChildAt(int index, Object newValue, String newInfo) Inserts a child at the given position into this node.Tree.deepClone()Clones this Tree (deep copy).Tree.getChildAfter(Tree aChild) Returns the child in this node's child array that immediately followsaChild, which must be a child of this node.Tree.getChildAt(int index) Returns the child with given index.Tree.getChildBefore(Tree aChild) Returns the child in this node's child array that immediately precedesaChild, which must be a child of this node.Tree.getFirstChild()Returns this node's first child.Tree.getFirstLeaf()Finds and returns the first leaf that is a descendant of this node -- either this node or its first child's first leaf.Tree.getLastChild()Returns this node's last child.Tree.getLastLeaf()Finds and returns the last leaf that is a descendant of this node -- either this node or its last child's last leaf.Tree.getNextNode()Returns the node that follows this node in a preorder traversal of this node's tree.Tree.getNextSibling()Returns the next sibling of this node in the parent's children array.Tree.getParent()Returns the parent node.Tree.getPreviousNode()Returns the node that precedes this node in a preorder traversal of this node's tree.Tree.getPreviousSibling()Returns the previous sibling of this node in the parent's children array.Tree.getRoot()Returns the root element of this (sub)-tree.Tree.removeChildAt(int index) Removes a child with given index.Creates a new tree from data of this recordset.Creates a new tree from data of this recordset.Creates a new tree from data of this recordset.Recordset.toTreeConstInfo(String keyField, String parentKeyField, String valueField, String info) Creates a new tree from data of this recordset.Methods in ch.ivyteam.ivy.scripting.objects that return types with arguments of type TreeModifier and TypeMethodDescriptionTree.createChildren(List<?> values) Creates and adds new children.Tree.createChildren(List<?> values, List<String> infos) Creates and adds new children.Creates and adds new children.Tree.createChildren(List<?> values, String _info) Creates and adds new children.Tree.createChildrenAt(int index, List<?> values) Creates and adds new children.Tree.createChildrenAt(int index, List<?> values, List<String> infos) Creates and adds new children.Tree.createChildrenAt(int index, List<?> values, List<String> infos, List<Boolean> mayHaveChildrenList) Creates and adds new children.Tree.createChildrenAt(int index, List<?> values, String _info) Creates and adds new children.Tree.getAllDeepChildren()Gets all child nodes and child nodes of child nodes ... of this node.Tree.getChildren()Gets the child nodes of this node.Tree.getPath()Returns a path for from the root node to this node.Tree.iterator()Creates and returns an iterator that traverses the subtree rooted at this node in preorder.Methods in ch.ivyteam.ivy.scripting.objects with parameters of type TreeModifier and TypeMethodDescriptionvoidAdds a new child to this tree.voidAdds a new child to this tree.Tree.getChildAfter(Tree aChild) Returns the child in this node's child array that immediately followsaChild, which must be a child of this node.Tree.getChildBefore(Tree aChild) Returns the child in this node's child array that immediately precedesaChild, which must be a child of this node.intReturns the index of the specified child in this node's child array.intReturns the index in this tree of the first occurrence of the specified child element, or -1 if this treet does not contain this child elementbooleanTree.isNodeChild(Tree aNode) Returns true ifaNodeis a child of this node.booleanTree.isNodeSibling(Tree anotherNode) Returns true ifanotherNodeis a sibling of (has the same parent as) this node.voidRemovesaChildfrom this node's child array, giving it a null parent.Method parameters in ch.ivyteam.ivy.scripting.objects with type arguments of type Tree