|
Options |
Name |
Purpose |
|
|
|
LOGICAL Add (integer, Object)
|
Inherited from OpenEdge.Core.Collections.List
|
|
|
|
LOGICAL Add (integer, TestInfo)
|
/* Inserts the specified element at the specified position in this list
(optional operation).*/
|
|
|
|
LOGICAL Add (Object)
|
Overrides OpenEdge.Core.Collections.List:Add (Object)
|
|
|
|
LOGICAL Add (TestInfo)
|
/* Appends the specified element to the end of this list
(optional operation). */
|
|
|
|
LOGICAL AddAll (ICollection)
|
Overrides OpenEdge.Core.Collections.List:AddAll (ICollection)
|
|
|
|
LOGICAL AddAll (integer, ICollection)
|
/** Adds all of the input collection to the current list, starting at the
index given (ie the index passed is the first item)
@param integer The index from which to add. Must be non-zero and positive
@param ICollection The collection to add
@return logical TRUE if items were added (ie the input collection has at least one item) */ Inherited from OpenEdge.Core.Collections.List
|
|
|
|
LOGICAL AddAll (integer, ITestInfoList)
|
/* Inserts all of the elements in the specified collection into this list
at the specified position (optional operation). */
|
|
|
|
LOGICAL AddAll (ITestInfoList)
|
/* Appends all of the elements in the specified collection to the end
of this list, in the order that they are returned by the specified
collection's iterator (optional operation). */
|
|
|
|
LOGICAL AddArray (integer, Object[])
|
Inherited from OpenEdge.Core.Collections.List
|
|
|
|
LOGICAL AddArray (integer, TestInfo[])
|
|
|
|
|
LOGICAL AddArray (Object[])
|
Inherited from OpenEdge.Core.Collections.AbstractTTCollection
|
|
|
|
LOGICAL AddArray (TestInfo[])
|
/** Appends all the elements in the array this list, optionally
at the specified position. */
|
|
|
|
Clear ()
|
Inherited from OpenEdge.Core.Collections.AbstractTTCollection
|
|
|
|
Object Clone ()
|
/* Deep clone. or rather deep enough since we don't know what the elements' Clone()
operations do, so this may end up being a memberwise clone */ Inherited from OpenEdge.Core.Collections.AbstractTTCollection
|
|
|
|
CloneElements (ICollection)
|
Inherited from OpenEdge.Core.Collections.AbstractTTCollection
|
|
|
|
LOGICAL Contains (Object)
|
Inherited from OpenEdge.Core.Collections.AbstractTTCollection
|
|
|
|
LOGICAL Contains (TestInfo)
|
/* Returns true if this list contains the specified element. */
|
|
|
|
LOGICAL ContainsAll (ICollection)
|
Inherited from OpenEdge.Core.Collections.AbstractTTCollection
|
|
|
|
LOGICAL ContainsAll (ITestInfoList)
|
/* Returns true if this list contains all of the elements of the
specified collection. */
|
|
|
|
LOGICAL Equals (Object)
|
/* Two Lists are defined to be equal if they are the same size and
all of the elements in this collection are in the to-compare List and
in the same sequence.
@param P.L.Object
@return logical TRUE if the Lists are equal. FALSE otherwise */ Inherited from OpenEdge.Core.Collections.List
|
|
|
|
FindBufferUseObject (Object)
|
/* override this in subclass - used by remove(obj) and others */ Overrides OpenEdge.Core.Collections.List:FindBufferUseObject (Object)
|
|
|
|
FindBufferUseObject (Object, buffer)
|
/* Find the FIRST reference of the search object; the search order
is by the List's Sequence. This means that if there are 2 instances
of this object, a dev will need to iterate over the collection to
determine which ones match.
The input buffer is RELEASED (so that we don't leak scope).
@param Progress.Lang.Object The search object
@param buffer ttList The buffer to search */ Inherited from OpenEdge.Core.Collections.List
|
|
|
|
Object Get (integer)
|
/* Returns the object represented by the index
@param integer The sequence to find. Must be positive and <= the Size.
@return Object The object represented by the sequence. May be ? */ Inherited from OpenEdge.Core.Collections.List
|
|
|
|
OpenEdge.ABLUnit.Reflection.TestInfo GetTestInfo (integer)
|
/* Returns the element at the specified position in this list. */
|
|
|
|
INTEGER IndexOf (Object)
|
Inherited from OpenEdge.Core.Collections.List
|
|
|
|
INTEGER IndexOf (TestInfo)
|
/* Returns the index in this list of the first occurrence of the specified
element, or 0 if this list does not contain this element. */
|
|
|
|
LOGICAL IsEmpty ()
|
Inherited from OpenEdge.Core.Collections.AbstractTTCollection
|
|
|
|
IIterator Iterator ()
|
/* Returns a new IIterator over the collection. */ Overrides OpenEdge.Core.Collections.List:Iterator ()
|
|
|
|
INTEGER LastIndexOf (Object)
|
Inherited from OpenEdge.Core.Collections.List
|
|
|
|
INTEGER LastIndexOf (TestInfo)
|
/* Returns the index in this list of the last occurrence of the
specified element, or 0 if this list does not contain this element. */
|
|
|
|
IListIterator ListIterator ()
|
/* Returns a new IListIterator over the collection. */ Inherited from OpenEdge.Core.Collections.List
|
|
|
|
IListIterator ListIterator (integer)
|
/* Returns a new IListIterator over the collection.*/ Inherited from OpenEdge.Core.Collections.List
|
|
|
|
Object Remove (integer)
|
/** Removes an item at the given index
@param integer The index to remove. Must be between 1 and the size of the List
@return Progress.Lang.Object The item that was removed. */ Inherited from OpenEdge.Core.Collections.List
|
|
|
|
LOGICAL Remove (Object)
|
Overrides OpenEdge.Core.Collections.List:Remove (Object)
|
|
|
|
LOGICAL Remove (TestInfo)
|
/* Removes the first occurrence in this list of the specified element
(optional operation). */
|
|
|
|
LOGICAL RemoveAll (ICollection)
|
Inherited from OpenEdge.Core.Collections.AbstractTTCollection
|
|
|
|
LOGICAL RemoveAll (ITestInfoList)
|
/* Removes from this list all the elements that are contained in the
specified collection (optional operation). */
|
|
|
|
OpenEdge.ABLUnit.Reflection.TestInfo RemoveTestInfo (integer)
|
/* Removes the element at the specified position in this list
(optional operation). */
|
|
|
|
Resize ()
|
/** Recalculates the Size of this collections.
Used particularly by Lists since there are operations
like Remove() that are index-based and not item-based. */ Inherited from OpenEdge.Core.Collections.AbstractTTCollection
|
|
|
|
LOGICAL RetainAll (ICollection)
|
Inherited from OpenEdge.Core.Collections.AbstractTTCollection
|
|
|
|
LOGICAL RetainAll (ITestInfoList)
|
/* Retains only the elements in this list that are contained in the
specified collection (optional operation).*/
|
|
|
|
Object Set (integer, Object)
|
Inherited from OpenEdge.Core.Collections.List
|
|
|
|
OpenEdge.ABLUnit.Reflection.TestInfo Set (integer, TestInfo)
|
/* Replaces the element at the specified position in this list with the
specified element (optional operation). */
|
|
|
|
OpenEdge.Core.Collections.IList SubList (integer, integer)
|
/* Returns a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive.
The fromIndex value must be positive and <= this list's Size
The toIndex value must be positive and <= this list's Size
The fromIndex value must be <= toIndex value
If fromIndex and toIndex are equal, the returned list has 1 entry.
@param integer fromIndex Low endpoint (INCLUSIVE) of the subList
@param integer toIndex High endpoint (INCLUSIVE) of the subList
@return IList a List containing the items. Has at least 1 entry. */ Inherited from OpenEdge.Core.Collections.List
|
|
|
|
OpenEdge.ABLUnit.Reflection.ITestInfoList SubListTestInfo (integer, integer)
|
/* Returns a view of the portion of this list between the specified
fromIndex, inclusive, and toIndex, exclusive. */
|
|
|
|
Object ToArray ()
|
/* ToArray should not be used with large collections
If there is too much data the ABL will throw:
Attempt to update data exceeding 32000. (12371) */ Inherited from OpenEdge.Core.Collections.AbstractTTCollection
|
|
|
|
ToTable (table-handle)
|
Inherited from OpenEdge.Core.Collections.AbstractTTCollection
|
|
|
|
OpenEdge.ABLUnit.Reflection.TestInfo ToTestInfoArray ()
|
/* returns the contents of the list as an array */
|