IQueue3.SafeElementIterator (METH) ¶ METHOD SafeElementIterator : COLLECTION_ERROR Returns an thread safe iterator over all elements. InOut: Scope Name Type Return SafeElementIterator COLLECTION_ERROR Input itfIterator ISafeListIterator
ISortedList.AddElementWithoutSorting (METH) ¶ METHOD AddElementWithoutSorting : COLLECTION_ERROR Add the element itfElement to the collection without sorting. InOut: Scope Name Type Comment Return AddElementWithoutSorting COLLECTION_ERROR Input itfElement IElement The element to add.
ISortedList.Sort (METH) ¶ METHOD Sort : COLLECTION_ERROR Sorts the list by calling ElementCompareTo of IElement . InOut: Scope Name Type Return Sort COLLECTION_ERROR
ISortedList3.SafeElementIterator (METH) ¶ METHOD SafeElementIterator : COLLECTION_ERROR Returns an thread safe iterator over all elements. InOut: Scope Name Type Return SafeElementIterator COLLECTION_ERROR Input itfIterator ISafeListIterator
IStack.Peek (METH) ¶ METHOD Peek : COLLECTION_ERROR Get the head element of the stack. The element will not be removed. InOut: Scope Name Type Comment Return Peek COLLECTION_ERROR Output itfElement IElement The top level element of the stack.
IStack.Pop (METH) ¶ METHOD Pop : COLLECTION_ERROR Get the head of the stack. The element will be removed from the stack. InOut: Scope Name Type Comment Return Pop COLLECTION_ERROR Output itfElement IElement The top level element of the stack.
IStack3.SafeElementIterator (METH) ¶ METHOD SafeElementIterator : COLLECTION_ERROR Returns an thread safe iterator over all elements. InOut: Scope Name Type Return SafeElementIterator COLLECTION_ERROR Input itfIterator ISafeListIterator
ITreeNode.AddChild (METH) ¶ METHOD AddChild : COLLECTION_ERROR Adds an child element to this node. InOut: Scope Name Type Comment Return AddChild COLLECTION_ERROR Input itfElement IElement The element to add Output itfTreeNode ITreeNode The corresponding tree node
ITreeNode.Children (METH) ¶ METHOD Children : COLLECTION_ERROR Gets an iterator with all children of this node. The iterator contains objects of the type ITreeNode . InOut: Scope Name Type Comment Return Children COLLECTION_ERROR Input itfIterator IIterator LinkedListIterator with child objects of the type ITreeNode .
ITreeNode.ContainsChild (METH) ¶ METHOD ContainsChild : COLLECTION_ERROR Checks if this node contains the child element itfElement. InOut: Scope Name Type Comment Return ContainsChild COLLECTION_ERROR Input itfElement IElement The element to check Output xResult BOOL True, if this node contains the child element itfElement.