Creates a hierarchical connector-property
object.
Syntax
public CxProperty();
public CxProperty(String propName, String simplePropValue);
public CxProperty(String propName, Object[] hierPropValues);
public CxProperty(String propName, org.w3c.dom.Element xmlElement);
Parameters
- propName
- Specifies the name of the connector configuration
property.
- simplePropValue
- Is a String value with which to initialize a simple connector
property.
- hierPropValues
- Is an array of connector-property (CWProperty) objects
with which to initialize a hierarchical connector property.
- xmlElement
- Is an XML Element object with which to initialize the
connector property.
Return values
A CxProperty object containing the newly created
hierarchical connector property.
Notes
The CxProperty() constructor provides the following
forms:
- The first form creates an empty connector-property object. You
can use other methods of the CWProperty class to populate
this object.
- The second form creates a connector-property object for a
simple connector property, with a property name and a string value
that you specify.
- The third form creates a connector-property object for a
hierarchical connector property, with a property name and array of
hierarchical properties that you specify.
- The fourth form creates a connector-property object and an XML
Element object.
