com.esri.arcgis.globecore
Interface IGlobeServerFindResults

All Superinterfaces:
Serializable
All Known Implementing Classes:
GlobeServerFindResults

public interface IGlobeServerFindResults
extends Serializable

Provides access to the Globe server find result collection.

Product Availability

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


Method Summary
 void add(IGlobeServerFindResult pFindResult)
          Adds a globe server find result.
 int getCount()
          The globe server find result count.
 IGlobeServerFindResult getElement(int index)
          The globe server find result at the specified position.
 void insert(int index, IGlobeServerFindResult pFindResult)
          Adds a globe server find result at the specified position.
 void remove(int index)
          Removes the globe server find result at the specified position.
 void removeAll()
          Removes all globe server find results.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The globe server find result 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

IGlobeServerFindResult getElement(int index)
                                  throws IOException,
                                         AutomationException
The globe server find result 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.globecore.IGlobeServerFindResult
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 globe server find result 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 globe server find results.

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(IGlobeServerFindResult pFindResult)
         throws IOException,
                AutomationException
Adds a globe server find result.

Product Availability

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

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

insert

void insert(int index,
            IGlobeServerFindResult pFindResult)
            throws IOException,
                   AutomationException
Adds a globe server find result at the specified position.

Product Availability

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

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