public class AssociatedConceptList
extends java.lang.Object
implements java.io.Serializable
Constructor and Description |
---|
AssociatedConceptList() |
Modifier and Type | Method and Description |
---|---|
void |
addAssociatedConcept(AssociatedConcept vAssociatedConcept) |
void |
addAssociatedConcept(int index,
AssociatedConcept vAssociatedConcept) |
java.util.Enumeration<? extends AssociatedConcept> |
enumerateAssociatedConcept()
Method enumerateAssociatedConcept.
|
AssociatedConcept[] |
getAssociatedConcept()
Method getAssociatedConcept.Returns the contents of the
collection in an Array.
|
AssociatedConcept |
getAssociatedConcept(int index)
Method getAssociatedConcept.
|
int |
getAssociatedConceptCount()
Method getAssociatedConceptCount.
|
java.util.Iterator<? extends AssociatedConcept> |
iterateAssociatedConcept()
Method iterateAssociatedConcept.
|
void |
removeAllAssociatedConcept() |
boolean |
removeAssociatedConcept(AssociatedConcept vAssociatedConcept)
Method removeAssociatedConcept.
|
AssociatedConcept |
removeAssociatedConceptAt(int index)
Method removeAssociatedConceptAt.
|
void |
setAssociatedConcept(AssociatedConcept[] vAssociatedConceptArray) |
void |
setAssociatedConcept(int index,
AssociatedConcept vAssociatedConcept) |
public void addAssociatedConcept(AssociatedConcept vAssociatedConcept) throws java.lang.IndexOutOfBoundsException
vAssociatedConcept
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void addAssociatedConcept(int index, AssociatedConcept vAssociatedConcept) throws java.lang.IndexOutOfBoundsException
index
- vAssociatedConcept
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic java.util.Enumeration<? extends AssociatedConcept> enumerateAssociatedConcept()
public AssociatedConcept getAssociatedConcept(int index) throws java.lang.IndexOutOfBoundsException
index
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic AssociatedConcept[] getAssociatedConcept()
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 getAssociatedConceptCount()
public java.util.Iterator<? extends AssociatedConcept> iterateAssociatedConcept()
public void removeAllAssociatedConcept()
public boolean removeAssociatedConcept(AssociatedConcept vAssociatedConcept)
vAssociatedConcept
- public AssociatedConcept removeAssociatedConceptAt(int index)
index
- public void setAssociatedConcept(int index, AssociatedConcept vAssociatedConcept) throws java.lang.IndexOutOfBoundsException
index
- vAssociatedConcept
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void setAssociatedConcept(AssociatedConcept[] vAssociatedConceptArray)
vAssociatedConceptArray
-