com.esri.arcgis.geodatabase
Interface IXmlPropertySetEdit

All Superinterfaces:
Serializable
All Known Implementing Classes:
XmlPropertySetEdit

public interface IXmlPropertySetEdit
extends Serializable

Provides access to members that edit metadata.

Remarks

This interface should not be used. Instead the methods available on the IXmlPropertySet and/or IXmlPropertySet2 should be used to set and get XML Elements. The different methods on the IXmlPropertySet and IXmlPropertySet2 honor the "Sync" attributes where the IXmlPropertySet.Get and IXmlPropertySet.Get do not.

Product Availability

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


Method Summary
 Object getProperty(String name)
          Returns the set of values for the specified element.
 void setDatasetByRef(IDataset rhs1)
          Dataset whose metadata will be edited.
 void setProperty(String name, Object value, int propType, int action)
          Sets the value of the specified element.
 

Method Detail

setDatasetByRef

void setDatasetByRef(IDataset rhs1)
                     throws IOException,
                            AutomationException
Dataset whose metadata will be edited.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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

getProperty

Object getProperty(String name)
                   throws IOException,
                          AutomationException
Returns the set of values for the specified element.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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

setProperty

void setProperty(String name,
                 Object value,
                 int propType,
                 int action)
                 throws IOException,
                        AutomationException
Sets the value of the specified element.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
name - The name (in)
value - A Variant (in)
propType - A com.esri.arcgis.geodatabase.esriXmlPropertyType constant (in)
action - A com.esri.arcgis.geodatabase.esriXmlSetPropertyAction constant (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.