com.esri.arcgis.geoprocessing
Interface IGPCompositeDomain

All Superinterfaces:
Serializable
All Known Implementing Classes:
GPCompositeDomain

public interface IGPCompositeDomain
extends Serializable

Provides access to the properties/methods of a geoprocessing composite domain object.

Product Availability

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


Method Summary
 void addDomain(IGPDomain pDomain)
          Adds a geoprocessing domain to the composite domain.
 int getCount()
          The number of geoprocessing domains in the composite domain.
 IGPDomain getDomain(int index)
          The geoprocessing domain at the specified index in the composite domain.
 void removeDomain(int index)
          Removes a geoprocessing domain from the composite domain.
 void replaceDomain(int index, IGPDomain pDomain)
          Replaces a geoprocessing domain at the specified index in the composite domain.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The number of geoprocessing domains in the composite domain.

Product Availability

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

Supported Platforms

Windows

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

getDomain

IGPDomain getDomain(int index)
                    throws IOException,
                           AutomationException
The geoprocessing domain at the specified index in the composite domain.

Product Availability

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

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

addDomain

void addDomain(IGPDomain pDomain)
               throws IOException,
                      AutomationException
Adds a geoprocessing domain to the composite domain.

Product Availability

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

Supported Platforms

Windows

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

removeDomain

void removeDomain(int index)
                  throws IOException,
                         AutomationException
Removes a geoprocessing domain from the composite domain.

Product Availability

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

Supported Platforms

Windows

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

replaceDomain

void replaceDomain(int index,
                   IGPDomain pDomain)
                   throws IOException,
                          AutomationException
Replaces a geoprocessing domain at the specified index in the composite domain.

Product Availability

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

Supported Platforms

Windows

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