IBM Rational Functional Tester
Version 8.1.1000
IBM Rational Functional Tester API Reference

Project Version 2.3

com.rational.test.ft.vp
Interface ITestDataTreeAttributes

All Superinterfaces:
ITestData

public interface ITestDataTreeAttributes
extends ITestData

Represents the necessary methods for supporting a tree node within a tree-type verification point.

Since:
RFT1.1

Method Summary
 State getCheckState()
          Returns the checked State associated with this VP.
 java.lang.String getText()
          Accesses the text associated with this verification point.
 boolean isCheckbox()
          Returns true if the tree item is a checkbox type tree item.
 void setCheckbox(boolean isCheckbox)
          Sets the checkbox property associated with this VP.
 void setCheckState(State state)
          Sets the checked State associated with this VP.
 void setText(java.lang.String text)
          Sets the text associated with this verification point.
 
Methods inherited from interface com.rational.test.ft.vp.ITestData
getData, getDataType, getDescription, getName, getProperty, getPropertyKeys, getType, setData, setDataType, setDescription, setName, setProperty, setType
 

Method Detail

getText

java.lang.String getText()
Accesses the text associated with this verification point.

Since:
RFT1.1

setText

void setText(java.lang.String text)
Sets the text associated with this verification point.

Parameters:
text - the text associated with this verification point

isCheckbox

boolean isCheckbox()
Returns true if the tree item is a checkbox type tree item.

Since:
RFT1.1
See Also:
setCheckbox(boolean)

setCheckbox

void setCheckbox(boolean isCheckbox)
Sets the checkbox property associated with this VP.

Parameters:
isCheckbox - the new checkbox property value.
Since:
RFT1.1
See Also:
isCheckbox()

getCheckState

State getCheckState()
Returns the checked State associated with this VP. This property is only defined for isCheckbox() tree items.

Returns:
the state of the check box
Since:
RFT1.1
See Also:
setCheckState(com.rational.test.ft.script.State state)

setCheckState

void setCheckState(State state)
Sets the checked State associated with this VP. This property is only defined for isCheckbox() tree items.

Parameters:
selected - the new checked State value.
Since:
RFT1.1