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