com.esri.arcgis.geodatabasedistributed
Interface ITablesDataChanges

All Superinterfaces:
Serializable
All Known Implementing Classes:
TablesDataChanges

public interface ITablesDataChanges
extends Serializable

Provides access to members that initialize a TablesDataChanges object.

Product Availability

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


Method Summary
 void add(ITableDataChangesInfo tableDataChanges)
          Add table data changes.
 ITableDataChangesInfo findTableChangesInfo(String targetName)
          A TableDataChangesInfo object for the target feature class.
 int getCount()
          The number of TableDataChangesInfo objects that have been added.
 void init(int modelType)
          The changes model type.
 void remove(String targetName)
          Remove table data changes.
 

Method Detail

init

void init(int modelType)
          throws IOException,
                 AutomationException
The changes model type.

Remarks

Initializes the class by setting the model type.

A full model type delta file indicates that all reactive geodatabase behavior was executed at edit time.

A simple model type delta file assumes that the edits were not made by a reactive geodatabase editor.

See the DataChangesExporter coclass for more information on delta files.

Product Availability

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

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

add

void add(ITableDataChangesInfo tableDataChanges)
         throws IOException,
                AutomationException
Add table data changes.

Remarks

This method adds a reference a TableDataChangesInfo object to the TablesDataChanges object.

Product Availability

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

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

remove

void remove(String targetName)
            throws IOException,
                   AutomationException
Remove table data changes.

Product Availability

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

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

findTableChangesInfo

ITableDataChangesInfo findTableChangesInfo(String targetName)
                                           throws IOException,
                                                  AutomationException
A TableDataChangesInfo object for the target feature class.

Product Availability

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

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

getCount

int getCount()
             throws IOException,
                    AutomationException
The number of TableDataChangesInfo objects that have been added.

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.