public interface IArray
extends java.io.Serializable
Description: 'Provides access to members that control a simple array of objects.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
IID
Deprecated.
Internal use only
|
static int |
IIDaafb54d9_aaf8_11d2_87f3_0000f8751720 |
static int |
xxDummy
Deprecated.
Internal use only
|
Modifier and Type | Method and Description |
---|---|
void |
add(java.lang.Object unk)
Adds an object to the array.
|
int |
getCount()
The element count of the array.
|
java.lang.Object |
getElement(int index)
Searches for the object in the array.
|
void |
insert(int index,
java.lang.Object unk)
Adds an object to the array at the specified index.
|
void |
remove(int index)
Removes an object from the array.
|
void |
removeAll()
Removes all objects from the array.
|
static final int IIDaafb54d9_aaf8_11d2_87f3_0000f8751720
static final int xxDummy
static final java.lang.String IID
int getCount() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.java.lang.Object getElement(int index) throws java.io.IOException, AutomationException
index
- The index (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void add(java.lang.Object unk) throws java.io.IOException, AutomationException
unk
- A reference to another Object (IUnknown) (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void insert(int index, java.lang.Object unk) throws java.io.IOException, AutomationException
index
- The index (in)unk
- A reference to another Object (IUnknown) (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void remove(int index) throws java.io.IOException, AutomationException
index
- The index (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void removeAll() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.