IBM Rational Functional Tester
Version 6.1
IBM Rational Functional Tester API Reference

Project Version 2.0

com.rational.test.ft.object.interfaces
Interface ISubitem

All Known Implementing Classes:
GuiSubitemTestObject, ScrollGuiSubitemTestObject, SubitemTestObject

public interface ISubitem

Defines the methods that must be supported for access to subitems. These actions are programmatically performed, not by mouse or keyboard actions. Use of the IGraphicalSubitem interface enables access to actions replayed by the mouse or keyboard.

Since:
RFT1.0

Method Summary
 void setState(Action action)
          Performs a specific action.
 void setState(Action action, Subitem item)
          Performs a specific action against the subitem at a specified index.
 void setState(Action action, Subitem start, Subitem end)
          Performs a specific action against the subitem range defined by the specified subitems.
 

Method Detail

setState

public void setState(Action action,
                     Subitem item)
Performs a specific action against the subitem at a specified index.

Parameters:
item - the subitem to act upon
action - the action that should be performed
Since:
RFT1.0

setState

public void setState(Action action)
Performs a specific action.

Parameters:
action - the action that should be performed
Since:
RFT1.0

setState

public void setState(Action action,
                     Subitem start,
                     Subitem end)
Performs a specific action against the subitem range defined by the specified subitems.

Parameters:
start - the first subitem to act upon
end - the last subitem to act upon
action - the action that should be performed
Since:
RFT1.0