com.esri.arcgis.geoprocessing
Interface IGPRepresentationLayerDomain

All Superinterfaces:
Serializable
All Known Implementing Classes:
GPRepresentationLayerDomain

public interface IGPRepresentationLayerDomain
extends Serializable

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

Product Availability

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


Method Summary
 void addType(int type)
          Add a new shape type to filter valid representations.
 void deleteType(int type)
          Remove a shape type.
 int getCount()
          Number of shape types to filter valid representations.
 int getType(int index)
          Shape type at a given index.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
Number of shape types to filter valid representations.

Product Availability

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

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

getType

int getType(int index)
            throws IOException,
                   AutomationException
Shape type at a given index.

Product Availability

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

Parameters:
index - The index (in)
Returns:
A com.esri.arcgis.geometry.esriGeometryType constant
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

addType

void addType(int type)
             throws IOException,
                    AutomationException
Add a new shape type to filter valid representations.

Product Availability

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

Parameters:
type - A com.esri.arcgis.geometry.esriGeometryType constant (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

deleteType

void deleteType(int type)
                throws IOException,
                       AutomationException
Remove a shape type.

Product Availability

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

Parameters:
type - A com.esri.arcgis.geometry.esriGeometryType constant (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.