public class IssueCollection
| Property Getters/Setters Summary | ||
|---|---|---|
int | getCount() | |
Gets the number of elements actually contained in the collection.
|
||
Issue | get(int index) | |
Gets the element at the specified index.
|
||
| Method Summary | ||
|---|---|---|
int | add(Issue issue) | |
Add the issue 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(Issue issue) | |
Remove the issue from the collection.
|
||
public int getCount()
public Issue get(int index)
index - public int add(Issue issue)
issue - public void remove(Issue issue)
issue - public java.util.Iterator iterator()
public boolean isExist(int index)
index - index of element.public void clear()