com.esri.arcgis.carto
Interface IGFSTableDescriptions

All Superinterfaces:
Serializable
All Known Implementing Classes:
GFSTableDescriptions

public interface IGFSTableDescriptions
extends Serializable

Provides access to the GFS Table Descriptions Interface.

Product Availability

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


Method Summary
 void add(IGFSTableDescription tableDescription)
          Adds a table description.
 int getCount()
          The table description count.
 IGFSTableDescription getElement(int index)
          The table description at the specified position.
 void insert(int index, IGFSTableDescription tableDescription)
          Adds a table description at the specified position.
 void remove(int index)
          Removes the table description at the specified position.
 void removeAll()
          Removes all table descriptions.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The table description 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

IGFSTableDescription getElement(int index)
                                throws IOException,
                                       AutomationException
The table description 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.IGFSTableDescription
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 table description 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 table descriptions.

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(IGFSTableDescription tableDescription)
         throws IOException,
                AutomationException
Adds a table description.

Product Availability

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

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

insert

void insert(int index,
            IGFSTableDescription tableDescription)
            throws IOException,
                   AutomationException
Adds a table description at the specified position.

Product Availability

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

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