|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ICopyHelper
Provides access to helper functions for post-processing copied metadata.
This interface can be used to update the metadata of a dataset, a geodatabase, or a standalone XML file after it's been copied. In most cases, explicitly calling this interface isn't necessary, because ArcCatalog will perform this operation for you, as will most programmatic copying methods (i.e. the methods of IGeoDBDataTransfer and IFeatureDataConverter).
Method Summary | |
---|---|
void |
updateDatabaseMetadata(IPropertySet destPropertySet,
IDatasetName src,
IDatasetName dest)
Call this while creating a copy of a dataset in a geodatabase. |
void |
updateMetadata(IName src,
IName dest,
boolean isMove)
Call this after creating a copy of a dataset, workspace, or file. |
Method Detail |
---|
void updateMetadata(IName src, IName dest, boolean isMove) throws IOException, AutomationException
This method updates the metadata of the dataset represented by the dest name object to indicate that it was copied (or moved) from the dataset represented by the src name object.
The metadata properties that are updated depend on which metadata synchronizers are enabled, but typically a new dataqual/lineage/procstep element is added (along with child elements) indicating that the dataset was copied from the pSrc location, and the idinfo/citation/citeinfo/onlink property will be changed if the FGDCSynchronizer is enabled.
As noted in the interface description, it usually isn't necessary to call this method, since most ways of copying a dataset through ArcCatalog and ArcObjects will perform this operation automatically.
src
- A reference to a com.esri.arcgis.system.IName (in)dest
- A reference to a com.esri.arcgis.system.IName (in)isMove
- The isMove (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void updateDatabaseMetadata(IPropertySet destPropertySet, IDatasetName src, IDatasetName dest) throws IOException, AutomationException
This method will update the destPropertySet with properties indicating that it is a dataset represented by the dest name object and that it was copied from the dataset represented by the src name object.
The metadata properties that are updated depend on which metadata synchronizers are enabled, but typically a new dataqual/lineage/procstep element is added (along with child elements) indicating that the dataset was copied from the pSrc location, and the idinfo/citation/citeinfo/onlink property will be changed if the FGDCSynchronizer is enabled.
As noted in the interface description, it usually isn't necessary to call this method, since most ways of copying a dataset through ArcCatalog and ArcObjects will perform this operation automatically.
Note that unlike the UpdateMetadata method, this will not update the metadata associated with either of the name objects, it will only modify the pDestPropertySet property set (which can then be persisted to the pDest name object through the IMetadata interface).
destPropertySet
- A reference to a com.esri.arcgis.system.IPropertySet (in)src
- A reference to a com.esri.arcgis.geodatabase.IDatasetName (in)dest
- A reference to a com.esri.arcgis.geodatabase.IDatasetName (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |