public class SupportedElementList
extends java.lang.Object
implements java.io.Serializable
Constructor and Description |
---|
SupportedElementList() |
Modifier and Type | Method and Description |
---|---|
void |
addSupportedElement(int index,
SupportedElement vSupportedElement) |
void |
addSupportedElement(SupportedElement vSupportedElement) |
java.util.Enumeration<? extends SupportedElement> |
enumerateSupportedElement()
Method enumerateSupportedElement.
|
SupportedElement[] |
getSupportedElement()
Method getSupportedElement.Returns the contents of the
collection in an Array.
|
SupportedElement |
getSupportedElement(int index)
Method getSupportedElement.
|
int |
getSupportedElementCount()
Method getSupportedElementCount.
|
java.util.Iterator<? extends SupportedElement> |
iterateSupportedElement()
Method iterateSupportedElement.
|
void |
removeAllSupportedElement() |
boolean |
removeSupportedElement(SupportedElement vSupportedElement)
Method removeSupportedElement.
|
SupportedElement |
removeSupportedElementAt(int index)
Method removeSupportedElementAt.
|
void |
setSupportedElement(int index,
SupportedElement vSupportedElement) |
void |
setSupportedElement(SupportedElement[] vSupportedElementArray) |
public void addSupportedElement(SupportedElement vSupportedElement) throws java.lang.IndexOutOfBoundsException
vSupportedElement
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void addSupportedElement(int index, SupportedElement vSupportedElement) throws java.lang.IndexOutOfBoundsException
index
- vSupportedElement
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic java.util.Enumeration<? extends SupportedElement> enumerateSupportedElement()
public SupportedElement getSupportedElement(int index) throws java.lang.IndexOutOfBoundsException
index
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic SupportedElement[] getSupportedElement()
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 getSupportedElementCount()
public java.util.Iterator<? extends SupportedElement> iterateSupportedElement()
public void removeAllSupportedElement()
public boolean removeSupportedElement(SupportedElement vSupportedElement)
vSupportedElement
- public SupportedElement removeSupportedElementAt(int index)
index
- public void setSupportedElement(int index, SupportedElement vSupportedElement) throws java.lang.IndexOutOfBoundsException
index
- vSupportedElement
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void setSupportedElement(SupportedElement[] vSupportedElementArray)
vSupportedElementArray
-