public class SystemReleaseList
extends java.lang.Object
implements java.io.Serializable
Constructor and Description |
---|
SystemReleaseList() |
Modifier and Type | Method and Description |
---|---|
void |
addSystemRelease(int index,
SystemRelease vSystemRelease) |
void |
addSystemRelease(SystemRelease vSystemRelease) |
java.util.Enumeration<? extends SystemRelease> |
enumerateSystemRelease()
Method enumerateSystemRelease.
|
SystemRelease[] |
getSystemRelease()
Method getSystemRelease.Returns the contents of the
collection in an Array.
|
SystemRelease |
getSystemRelease(int index)
Method getSystemRelease.
|
int |
getSystemReleaseCount()
Method getSystemReleaseCount.
|
java.util.Iterator<? extends SystemRelease> |
iterateSystemRelease()
Method iterateSystemRelease.
|
void |
removeAllSystemRelease() |
boolean |
removeSystemRelease(SystemRelease vSystemRelease)
Method removeSystemRelease.
|
SystemRelease |
removeSystemReleaseAt(int index)
Method removeSystemReleaseAt.
|
void |
setSystemRelease(int index,
SystemRelease vSystemRelease) |
void |
setSystemRelease(SystemRelease[] vSystemReleaseArray) |
public void addSystemRelease(SystemRelease vSystemRelease) throws java.lang.IndexOutOfBoundsException
vSystemRelease
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void addSystemRelease(int index, SystemRelease vSystemRelease) throws java.lang.IndexOutOfBoundsException
index
- vSystemRelease
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic java.util.Enumeration<? extends SystemRelease> enumerateSystemRelease()
public SystemRelease getSystemRelease(int index) throws java.lang.IndexOutOfBoundsException
index
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic SystemRelease[] getSystemRelease()
Note: Just in case the collection contents are changing in another thread, we pass a 0-length Array of the correct type into the API call. This way we know that the Array returned is of exactly the correct length.
public int getSystemReleaseCount()
public java.util.Iterator<? extends SystemRelease> iterateSystemRelease()
public void removeAllSystemRelease()
public boolean removeSystemRelease(SystemRelease vSystemRelease)
vSystemRelease
- public SystemRelease removeSystemReleaseAt(int index)
index
- public void setSystemRelease(int index, SystemRelease vSystemRelease) throws java.lang.IndexOutOfBoundsException
index
- vSystemRelease
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void setSystemRelease(SystemRelease[] vSystemReleaseArray)
vSystemReleaseArray
-