com.esri.arcgis.trackinganalyst
Interface IPropSet

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
IPropSetProxy, PropSet

public interface IPropSet
extends java.io.Serializable

COM Interface 'IPropSet'. Generated 3/19/2015 1:20:59 PM from 'C:\ArcGIS\COM\esriTrackingAnalyst.olb'

Description: 'Provides access to members for managing a PropSet.' 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 IID52c6c620_62a2_11d6_b848_00010265adc5
           
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.
 java.lang.String getProperty(java.lang.String name)
          The value of the specified property.
 void removeProperty(java.lang.String name)
          Removes a property from the set.
 void setProperties(java.lang.Object names, java.lang.Object values)
          Set the property collection from an array of names and values.
 void setProperty(java.lang.String name, java.lang.String value)
          The value of the specified property.
 

Field Detail

IID52c6c620_62a2_11d6_b848_00010265adc5

static final int IID52c6c620_62a2_11d6_b848_00010265adc5
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.String getProperty(java.lang.String name)
                             throws java.io.IOException,
                                    AutomationException
The value of the specified property.

Parameters:
name - The name (in)
Returns:
The value
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 (in/out: use single element array)
values - A Variant (in/out: use single element array)
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
Set the property collection from an array of names and values.

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.

setProperty

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

Parameters:
name - The name (in)
value - The value (in)
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.