com.esri.arcgis.system
Interface IPropertySet

All Superinterfaces:
java.io.Serializable
All Known Subinterfaces:
IPropertySet2
All Known Implementing Classes:
GenericLocatorStyle, IPropertySet2Proxy, IPropertySetProxy, PropertySet, RasterFunctionTemplateArguments, XmlPropertySet

public interface IPropertySet
extends java.io.Serializable

COM Interface 'IPropertySet'. Generated 3/19/2015 1:20:51 PM from 'C:\ArcGIS\COM\esriSystem.olb'

Description: 'Provides access to members for managing a PropertySet.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IIDf0ba6abc_8e9f_11d0_b4ab_0000f8037368
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void getAllProperties(java.lang.Object[] names, java.lang.Object[] values)
          The name and value of all the properties in the property set.
 int getCount()
          The number of properties contained in the property set.
 void getProperties(java.lang.Object names, java.lang.Object[] values)
          The values of the specified properties.
 java.lang.Object getProperty(java.lang.String name)
          The value of the specified property.
 boolean isEqual(IPropertySet propertySet)
          True if the property set is the same as the input property set.
 void removeProperty(java.lang.String name)
          Removes a property from the set.
 void setProperties(java.lang.Object names, java.lang.Object values)
          The values of the specified properties.
 void setProperty(java.lang.String name, java.lang.Object value)
          The value of the specified property.
 

Field Detail

IIDf0ba6abc_8e9f_11d0_b4ab_0000f8037368

static final int IIDf0ba6abc_8e9f_11d0_b4ab_0000f8037368
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

getCount

int getCount()
             throws java.io.IOException,
                    AutomationException
The number of properties contained in the property set.

Returns:
The count
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getProperty

java.lang.Object getProperty(java.lang.String name)
                             throws java.io.IOException,
                                    AutomationException
The value of the specified property.

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

getProperties

void getProperties(java.lang.Object names,
                   java.lang.Object[] values)
                   throws java.io.IOException,
                          AutomationException
The values of the specified properties.

Parameters:
names - A Variant (in)
values - A Variant (out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getAllProperties

void getAllProperties(java.lang.Object[] names,
                      java.lang.Object[] values)
                      throws java.io.IOException,
                             AutomationException
The name and value of all the properties in the property set.

Parameters:
names - A Variant (out: use single element array)
values - A Variant (out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setProperty

void setProperty(java.lang.String name,
                 java.lang.Object value)
                 throws java.io.IOException,
                        AutomationException
The value of the specified property.

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

setProperties

void setProperties(java.lang.Object names,
                   java.lang.Object values)
                   throws java.io.IOException,
                          AutomationException
The values of the specified properties.

Parameters:
names - A Variant (in)
values - A Variant (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

isEqual

boolean isEqual(IPropertySet propertySet)
                throws java.io.IOException,
                       AutomationException
True if the property set is the same as the input property set.

Parameters:
propertySet - A reference to a com.esri.arcgis.system.IPropertySet (in)
Returns:
The isEqual
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

removeProperty

void removeProperty(java.lang.String name)
                    throws java.io.IOException,
                           AutomationException
Removes a property from the set.

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