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