|
Options |
Name |
Purpose |
|
|
|
LOGICAL Add (integer, TestInfo)
|
/* Inserts the specified element at the specified position in this list
(optional operation).*/
|
|
|
|
LOGICAL Add (TestInfo)
|
/* Appends the specified element to the end of this list
(optional operation). */
|
|
|
|
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, TestInfo[])
|
|
|
|
|
LOGICAL AddArray (TestInfo[])
|
/** Appends all the elements in the array this list, optionally
at the specified position. */
|
|
|
|
LOGICAL Contains (TestInfo)
|
/* Returns true if this list contains the specified element. */
|
|
|
|
LOGICAL ContainsAll (ITestInfoList)
|
/* Returns true if this list contains all of the elements of the
specified collection. */
|
|
|
|
OpenEdge.ABLUnit.Reflection.TestInfo GetTestInfo (integer)
|
/* Returns the element at the specified position in this 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. */
|
|
|
|
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. */
|
|
|
|
LOGICAL Remove (TestInfo)
|
/* Removes the first occurrence in this list of the specified element
(optional operation). */
|
|
|
|
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). */
|
|
|
|
LOGICAL RetainAll (ITestInfoList)
|
/* Retains only the elements in this list that are contained in the
specified collection (optional operation).*/
|
|
|
|
OpenEdge.ABLUnit.Reflection.TestInfo Set (integer, TestInfo)
|
/* Replaces the element at the specified position in this list with the
specified element (optional operation). */
|
|
|
|
OpenEdge.ABLUnit.Reflection.ITestInfoList SubListTestInfo (integer, integer)
|
/* Returns a view of the portion of this list between the specified
fromIndex, inclusive, and toIndex, exclusive. */
|
|
|
|
OpenEdge.ABLUnit.Reflection.TestInfo ToTestInfoArray ()
|
/* returns the contents of the list as an array */
|