public class NCIChangeEventList
extends java.lang.Object
implements java.io.Serializable
Constructor and Description |
---|
NCIChangeEventList() |
Modifier and Type | Method and Description |
---|---|
void |
addEntry(int index,
NCIChangeEvent vEntry) |
void |
addEntry(NCIChangeEvent vEntry) |
java.util.Enumeration<? extends NCIChangeEvent> |
enumerateEntry()
Method enumerateEntry.
|
NCIChangeEvent[] |
getEntry()
Method getEntry.Returns the contents of the collection in an
Array.
|
NCIChangeEvent |
getEntry(int index)
Method getEntry.
|
int |
getEntryCount()
Method getEntryCount.
|
java.util.Iterator<? extends NCIChangeEvent> |
iterateEntry()
Method iterateEntry.
|
void |
removeAllEntry() |
boolean |
removeEntry(NCIChangeEvent vEntry)
Method removeEntry.
|
NCIChangeEvent |
removeEntryAt(int index)
Method removeEntryAt.
|
void |
setEntry(int index,
NCIChangeEvent vEntry) |
void |
setEntry(NCIChangeEvent[] vEntryArray) |
public void addEntry(NCIChangeEvent vEntry) throws java.lang.IndexOutOfBoundsException
vEntry
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void addEntry(int index, NCIChangeEvent vEntry) throws java.lang.IndexOutOfBoundsException
index
- vEntry
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic java.util.Enumeration<? extends NCIChangeEvent> enumerateEntry()
public NCIChangeEvent getEntry(int index) throws java.lang.IndexOutOfBoundsException
index
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic NCIChangeEvent[] getEntry()
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 getEntryCount()
public java.util.Iterator<? extends NCIChangeEvent> iterateEntry()
public void removeAllEntry()
public boolean removeEntry(NCIChangeEvent vEntry)
vEntry
- public NCIChangeEvent removeEntryAt(int index)
index
- public void setEntry(int index, NCIChangeEvent vEntry) throws java.lang.IndexOutOfBoundsException
index
- vEntry
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void setEntry(NCIChangeEvent[] vEntryArray)
vEntryArray
-