Class Windows
Description
This data type is used to specify an array of windows.
The user can access elements by their integer index (position) in the list. Sequence provides methods for positional (indexed) access to its elements. Sequences are zero based.
User Guide References:
Setting Up a Model Program:Windows,
Session Objects:Windows,
Windows and Views:Windows,
Getting a Window Object:Windows,
Creating Windows:Windows,
Window Operations:Windows,
Window Operations:Windows,
Setting up an Asynchronous J-Link Application:Windows,
General Problems:Windows,
Problems Specific to Servlets and JSP:Windows,
Testing the J-Link Synchronous Installation:Windows,
Testing the J-Link Asynchronous Installation:Windows,
Parameter Editor:Windows,
Round Checker Utility:Windows,
Testing the Synchronous Installation:Windows,
Parameter Editor:Windows,
Round Checker Utility:Windows,
Creo Object TOOLKIT Java Classes:Windows Method Summary
| |
| Creates a new empty sequence. |
| |
| Returns the value of the sequence element with the specified index. If the index is out of range, this method throws exceptioncipXInvalidSeqIndex. |
int | |
| Returns current number of elements in the sequence. |
void | |
| Inserts an element with the specified value in front of the sequence element with the specified index. If the index is out of range, the sequence is expanded to include this index. |
void | |
| Inserts elements from the list passed as the second argument in front of the sequence element with the specified index. If the index is out of range, the sequence is expanded to include this index. |
void | |
| Removes elements in the specified range from the sequence. The first argument specifies the index of the first element to be removed. The second argument specifies the index of the element immediately after the last in the range to be removed. |
void | |
| Assigns a value to the sequence element with the specified index. If the index is out of range, the sequence is expanded to include this index. |
Method Detail
getarraysize |
int | getarraysize | () |
Returns current number of elements in the sequence.
Returns:
Current number of elements.
Returns the value of the sequence element with the specified index. If the index is out of range, this method throws exception cipXInvalidSeqIndex.
Parameters:
idx
Index of requested sequence element.
Returns:
Value of the element at the specified index.
Assigns a value to the sequence element with the specified index. If the index is out of range, the sequence is expanded to include this index.
Parameters:
idx
Index of the element to be assigned.
value
Value to be assigned.
Returns:
removerange |
void | removerange | (int frominc, int toexcl) |
Removes elements in the specified range from the sequence. The first argument specifies the index of the first element to be removed. The second argument specifies the index of the element immediately after the last in the range to be removed.
Parameters:
frominc
Index of the first element to be removed.
toexcl
Index of the element following the last element to be removed.
Returns:
Inserts an element with the specified value in front of the sequence element with the specified index. If the index is out of range, the sequence is expanded to include this index.
Parameters:
idx
Index for an element to be inserted at.
value
Value to be inserted.
Returns:
Inserts elements from the list passed as the second argument in front of the sequence element with the specified index. If the index is out of range, the sequence is expanded to include this index.
Parameters:
idx
Index at which the first new element should be inserted.
seq
Sequence of elements to be inserted.
Returns:
Creates a new empty sequence.
Returns:
Created sequence.