|
+--BBjVector
A BBjVector object is a single dimensional array that maintains a list of objects and dynamically sizes to fit the number of objects added.
The BBjVector object is created through the following BBjAPI object method:
|
Return Value |
Method |
|
BBjVector |
|
Return Value |
Method |
|
void |
addItem(Object item!) |
|
void |
clear() |
|
Object |
getItem(int index) |
|
void |
insertItem(int index, Object item!) |
|
Object |
removeItem(int index) |
|
int |
size() |
|
void |
setItem(int index, Object item!) |
Any allowed type or object can be put into a BBjVector. The index is 0-based. BBjVector implements java.util.Collection and java.util.List. Therefore, all methods of these interfaces are available on BBjVector. See http://java.sun.com for more details.
None.
|
REM Create an instance of a BBjVector object |
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.