public interface ITestDataProperties extends ITestData
TestObject in the software under test. This interface is a simple masked-property set added
to the base-level ITestData interface.| Modifier and Type | Method and Description |
|---|---|
java.util.Enumeration |
getObjectProperties()
Returns an enumeration of
IMaskedProperty objects. |
com.rational.test.ft.vp.impl.IMaskedProperty |
getObjectProperty(int index)
Returns the property information for the property at the supplied
zero-based index.
|
com.rational.test.ft.vp.impl.IMaskedProperty |
getObjectProperty(java.lang.String property)
Returns the property information for the named property.
|
int |
getObjectPropertyCount()
Returns the number of properties that have been added to this
property set.
|
void |
setObjectProperty(com.rational.test.ft.vp.impl.IMaskedProperty item)
Adds a single property to the set of properties associated with
this test data.
|
void |
setObjectProperty(java.lang.String property,
java.lang.Object value,
boolean masked)
Adds a single property to the set of properties associated with
this test data.
|
getData, getDataType, getDescription, getName, getProperty, getPropertyKeys, getType, setData, setDataType, setDescription, setName, setProperty, setTypevoid setObjectProperty(java.lang.String property,
java.lang.Object value,
boolean masked)
property - the name of the property being added to the setvalue - the value associated with the specified propertymasked - If true, this property does not
participate in comparisons between this property set
and other property sets.setObjectProperty(IMaskedProperty)void setObjectProperty(com.rational.test.ft.vp.impl.IMaskedProperty item)
item - the property data to be added to the setint getObjectPropertyCount()
java.util.Enumeration getObjectProperties()
IMaskedProperty objects.com.rational.test.ft.vp.impl.IMaskedProperty getObjectProperty(int index)
null value is returned for values outside the
range 0 to getObjectPropertyCount.index - the zero-based index of the desired propertygetObjectPropertyCount()com.rational.test.ft.vp.impl.IMaskedProperty getObjectProperty(java.lang.String property)
null value is returned if the supplied property name is not known.property - the name of the desired property