|
Options |
Name |
Purpose |
|
|
|
LOGICAL Add (integer, TestTestResult)
|
/* Inserts the specified element at the specified position in this list
(optional operation).*/
|
|
|
|
LOGICAL Add (TestTestResult)
|
/* Appends the specified element to the end of this list
(optional operation). */
|
|
|
|
LOGICAL AddArray (integer, TestTestResult[])
|
|
|
|
|
LOGICAL AddArray (TestTestResult[])
|
/** Appends all the elements in the array this list, optionally
at the specified position. */
|
|
|
|
LOGICAL Contains (TestTestResult)
|
/* Returns true if this list contains the specified element. */
|
|
|
|
OpenEdge.ABLUnit.Results.TestTestResult GetTestTestResult (integer)
|
/* Returns the element at the specified position in this list. */
|
|
|
|
INTEGER IndexOf (TestTestResult)
|
/* 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 (TestTestResult)
|
/* 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 (TestTestResult)
|
/* Removes the first occurrence in this list of the specified element
(optional operation). */
|
|
|
|
OpenEdge.ABLUnit.Results.TestTestResult RemoveTestTestResult (integer)
|
/* Removes the element at the specified position in this list
(optional operation). */
|
|
|
|
OpenEdge.ABLUnit.Results.TestTestResult Set (integer, TestTestResult)
|
/* Replaces the element at the specified position in this list with the
specified element (optional operation). */
|
|
|
|
OpenEdge.Core.Collections.IList SubListTestTestResult (integer, integer)
|
/* Returns a view of the portion of this list between the specified
fromIndex, inclusive, and toIndex, exclusive. */
|
|
|
|
OpenEdge.ABLUnit.Results.TestTestResult ToTestTestResultArray ()
|
/* returns the contents of the list as an array */
|