com.esri.arcgis.geoprocessing
Interface IGPDefaultNameList

All Superinterfaces:
Serializable
All Known Implementing Classes:
GPEnvironmentManager

public interface IGPDefaultNameList
extends Serializable

Provides access to the properties/methods to manage a list of output dataset names.

Product Availability

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


Method Summary
 void addOutputName(String name)
          Adds the given name to the list.
 boolean checkOutputName(String name)
          Returns whether or not the given name exists within the list.
 void removeAllOutputNames()
          Removes all names from the list.
 void removeOutputName(String name)
          Removes the specified name from the list.
 

Method Detail

removeAllOutputNames

void removeAllOutputNames()
                          throws IOException,
                                 AutomationException
Removes all names from the list.

Product Availability

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

Supported Platforms

Windows

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

addOutputName

void addOutputName(String name)
                   throws IOException,
                          AutomationException
Adds the given name to the list.

Product Availability

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

Supported Platforms

Windows

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

removeOutputName

void removeOutputName(String name)
                      throws IOException,
                             AutomationException
Removes the specified name from the list.

Product Availability

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

Supported Platforms

Windows

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

checkOutputName

boolean checkOutputName(String name)
                        throws IOException,
                               AutomationException
Returns whether or not the given name exists within the list.

Product Availability

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

Supported Platforms

Windows

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