Class JTableMouseDriver
java.lang.Object
org.netbeans.jemmy.drivers.LightSupportiveDriver
org.netbeans.jemmy.drivers.tables.JTableMouseDriver
- All Implemented Interfaces:
LightDriver, TableDriver
TableDriver for javax.swing.JTableDriver component type.
- Author:
- Alexandre Iline(alexandre.iline@sun.com)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidclickOnCell(JTableOperator oper, int row, int column, int clickCount) Clicks on JTable cell.voideditCell(ComponentOperator oper, int row, int column, Object value) Edits a cell.voidselectCell(ComponentOperator oper, int row, int column) Selects a cell.Methods inherited from class LightSupportiveDriver
checkSupported, getSupported
-
Constructor Details
-
JTableMouseDriver
public JTableMouseDriver()Constructs a JTableMouseDriver.
-
-
Method Details
-
selectCell
Description copied from interface:TableDriverSelects a cell.- Specified by:
selectCellin interfaceTableDriver- Parameters:
oper- Table operator.row- Cell row index.column- Cell column index.
-
editCell
Description copied from interface:TableDriverEdits a cell.- Specified by:
editCellin interfaceTableDriver- Parameters:
oper- Table operator.row- Cell row index.column- Cell column index.value- New value.
-
clickOnCell
Clicks on JTable cell.- Parameters:
oper- Table operator.row- Cell row index.column- Cell column index.clickCount- Count to click.
-