public interface ITestData
Data property provides access
to the interesting data.| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
getData()
Returns the real data associated with this verification point.
|
java.lang.String |
getDataType()
Returns the type name used internally to update the data
associated with this verification-point data.
|
java.lang.String |
getDescription()
Returns the description displayed to the user that describes
this verification-point data.
|
java.lang.String |
getName()
Returns the name associated with this verification-point
script.
|
java.lang.Object |
getProperty(java.lang.String propertyName)
Returns a specific property set, that is, a value for this verification
point data.
|
java.lang.String[] |
getPropertyKeys()
Returns an array of property names.
|
java.lang.String |
getType()
Deprecated.
As of version RFT1.1
|
void |
setData(java.lang.Object data)
Sets the real data associated with this verification point.
|
void |
setDataType(java.lang.String type)
Sets the type name used internally to update the data
associated with this verification-point data.
|
void |
setDescription(java.lang.String description)
Sets the description displayed to the user that describes
this verification-point data.
|
void |
setName(java.lang.String name)
Sets the name of this verification-point data.
|
void |
setProperty(java.lang.String propertyName,
java.lang.Object value)
Sets a specific property for this verification-point data.
|
void |
setType(java.lang.String type)
Deprecated.
As of version RFT1.1
|
java.lang.Object getData()
setData(Object)void setData(java.lang.Object data)
data - The real data associated with this verification pointgetData()java.lang.String getName()
setName(String)void setName(java.lang.String name)
name - the unique name of this
test data, relative to the scriptgetName()java.lang.String getDescription()
setDescription(String)void setDescription(java.lang.String description)
description - description of this test datagetDescription()java.lang.String getType()
setType(String)java.lang.String getDataType()
setDataType(String)void setType(java.lang.String type)
description - the internal type name of this test datagetType()void setDataType(java.lang.String type)
description - the internal type name of this test datagetDataType()java.lang.Object getProperty(java.lang.String propertyName)
PropertyNotFoundException is thrown if the requested property does not exist.propertyName - the name of the property being locatedsetProperty(String,Object)void setProperty(java.lang.String propertyName,
java.lang.Object value)
# character in the
property name is reserved by the testing environment. It should not be
used by specific ITestData implementations.propertyName - the name of the property being definedvalue - the value of the propertygetProperty(String)java.lang.String[] getPropertyKeys()
# character, and
you should not directly manipulate them.getProperty(String),
setProperty(String,Object)