com.esri.arcgis.catalog
Interface IGxObjectArray

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
GxObjectArray, IGxObjectArrayProxy

public interface IGxObjectArray
extends java.io.Serializable

COM Interface 'IGxObjectArray'. Generated 3/19/2015 1:21:01 PM from 'C:\ArcGIS\COM\esriCatalog.olb'

Description: 'Provides access to members that manage an array of GxObjects.' 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 =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IIDb330f487_de4d_11d2_9f2f_00c04f6bc69e
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void empty()
          Removes all objects from the array.
 int getCount()
          The number of objects in the array.
 void insert(int index, IGxObject gxObject)
          Inserts an object into the array before the specified index.
 IGxObject item(int index)
          The object at the given index in the array.
 void remove(int index)
          Removes the object at the specified index in the array.
 

Field Detail

IIDb330f487_de4d_11d2_9f2f_00c04f6bc69e

static final int IIDb330f487_de4d_11d2_9f2f_00c04f6bc69e
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

getCount

int getCount()
             throws java.io.IOException,
                    AutomationException
The number of objects in the array.

Returns:
The count
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

insert

void insert(int index,
            IGxObject gxObject)
            throws java.io.IOException,
                   AutomationException
Inserts an object into the array before the specified index. If index is -1, the object is inserted at the end.

Parameters:
index - The index (in)
gxObject - A reference to a com.esri.arcgis.catalog.IGxObject (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

remove

void remove(int index)
            throws java.io.IOException,
                   AutomationException
Removes the object at the specified index in the array.

Parameters:
index - The index (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

item

IGxObject item(int index)
               throws java.io.IOException,
                      AutomationException
The object at the given index in the array.

Parameters:
index - The index (in)
Returns:
A reference to a com.esri.arcgis.catalog.IGxObject
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

empty

void empty()
           throws java.io.IOException,
                  AutomationException
Removes all objects from the array.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.