com.esri.arcgis.carto
Interface IEditResults

All Superinterfaces:
Serializable
All Known Implementing Classes:
EditResults

public interface IEditResults
extends Serializable

Array of EditResult elements.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 void add(IEditResult editResult)
          Adds an EditResult.
 int getCount()
          The EditResult elements count.
 IEditResult getElement(int index)
          The EditResult at the specified position.
 void insert(int index, IEditResult editResult)
          Adds an EditResult at the specified position.
 void remove(int index)
          Removes the EditResult at the specified position.
 void removeAll()
          Removes all EditResults.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The EditResult elements count.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

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

getElement

IEditResult getElement(int index)
                       throws IOException,
                              AutomationException
The EditResult at the specified position.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

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

remove

void remove(int index)
            throws IOException,
                   AutomationException
Removes the EditResult at the specified position.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

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

removeAll

void removeAll()
               throws IOException,
                      AutomationException
Removes all EditResults.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

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

add

void add(IEditResult editResult)
         throws IOException,
                AutomationException
Adds an EditResult.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
editResult - A reference to a com.esri.arcgis.carto.IEditResult (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

insert

void insert(int index,
            IEditResult editResult)
            throws IOException,
                   AutomationException
Adds an EditResult at the specified position.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
index - The index (in)
editResult - A reference to a com.esri.arcgis.carto.IEditResult (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.