public class ParaCollection
Property Getters/Setters Summary | ||
---|---|---|
int | getCount() | |
Gets the number of elements actually contained in the collection.
|
||
Para | get(int index) | |
Gets the element at the specified index.
|
Method Summary | ||
---|---|---|
int | add(Para item) | |
Add the Para object in the collection.
|
||
void | clear() | |
Removes all elements from collection.
|
||
Para | getPara(int IX) | |
Gets the element at the specified index IX. Returns Null if the element is not exist.
|
||
boolean | isExist(int index) | |
Is exist item in the collection.
|
||
java.util.Iterator | iterator() | |
Supports a simple iteration over a nongeneric collection.
|
||
void | remove(Para item) | |
Remove the Para object from the collection.
|
public int getCount()
public Para get(int index)
index
- public int add(Para item)
item
- public void remove(Para item)
item
- public Para getPara(int IX)
IX
- public java.util.Iterator iterator()
public boolean isExist(int index)
index
- index of element.public void clear()