com.esri.arcgis.geodatabasedistributed
Interface IVersionDataChangesInit

All Superinterfaces:
Serializable
All Known Implementing Classes:
VersionDataChanges

public interface IVersionDataChangesInit
extends Serializable

Provides access to members that initialize a VersionDataChanges object.

Remarks

This interface provides a method to initialize a VersionDataChanges coclass. This coclass can be used to get the edits between a source version and a target version.

The VersionDataChanges coclass is used to export edits to a delta file. See the DataChangesExporter coclass.

Product Availability

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

See Also:
DataChangesExporter, DataChanges, IExportDataChanges

Method Summary
 void init(IWorkspaceName sourceVersionedWorkspace, IWorkspaceName targetVersionedWorkspace)
          Initializes the class by setting the versioned workspace and one of its ancestor versioned workspace.
 

Method Detail

init

void init(IWorkspaceName sourceVersionedWorkspace,
          IWorkspaceName targetVersionedWorkspace)
          throws IOException,
                 AutomationException
Initializes the class by setting the versioned workspace and one of its ancestor versioned workspace.

Remarks

This interface Init method is used to initialize a VersionDataChanges coclass. This coclass can be used to get the edits between a source version and a target version.

The SourceVersionedWorkspace parameter is the WorkspaceName object that references the source version. The TargetVersionedWorkspace parameter is the WorkspaceName object that references the target version.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
sourceVersionedWorkspace - A reference to a com.esri.arcgis.geodatabase.IWorkspaceName (in)
targetVersionedWorkspace - A reference to a com.esri.arcgis.geodatabase.IWorkspaceName (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
See Also:
DataChangesExporter, DataChanges, IExportDataChanges