public class SolutionXMLCollection
Property Getters/Setters Summary | ||
---|---|---|
int | getCount() | |
Gets the number of elements actually contained in the collection.
|
||
SolutionXML | get(int index) | |
Gets the element at the specified index.
|
||
SolutionXML | get(java.lang.String name) | |
Gets the element at the specified attribute Name. Returns null if an element is not exist.
|
Method Summary | ||
---|---|---|
int | add(SolutionXML solutionXml) | |
Add the SolutionXML 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(SolutionXML solutionXml) | |
Remove the SolutionXML from the collection.
|
public int getCount()
public SolutionXML get(int index)
index
- public SolutionXML get(java.lang.String name)
name
- public int add(SolutionXML solutionXml)
solutionXml
- public void remove(SolutionXML solutionXml)
solutionXml
- public java.util.Iterator iterator()
public boolean isExist(int index)
index
- index of element.public void clear()