Package org.netbeans.jemmy.operators
Class JTableOperator.JTableByCellFinder
- java.lang.Object
-
- org.netbeans.jemmy.operators.JTableOperator.JTableByCellFinder
-
- All Implemented Interfaces:
ComponentChooser
- Enclosing class:
- JTableOperator
public static class JTableOperator.JTableByCellFinder extends Object implements ComponentChooser
Allows to find component by cell text.
-
-
Constructor Summary
Constructors Constructor Description JTableByCellFinder(String lb, int r, int c)
Constructs JTableByCellFinder.JTableByCellFinder(String lb, int r, int c, Operator.StringComparator comparator)
Constructs JTableByCellFinder.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
checkComponent(Component comp)
Check if the component argument meets the search criteria.String
getDescription()
Returns searched component description.
-
-
-
Constructor Detail
-
JTableByCellFinder
public JTableByCellFinder(String lb, int r, int c, Operator.StringComparator comparator)
Constructs JTableByCellFinder.- Parameters:
lb
- a text patternr
- a row index to look in. If equal to -1, selected row is checked.c
- a column index to look in. If equal to -1, selected column is checked.comparator
- specifies string comparision algorithm.
-
JTableByCellFinder
public JTableByCellFinder(String lb, int r, int c)
Constructs JTableByCellFinder.- Parameters:
lb
- a text patternr
- a row index to look in. If equal to -1, selected row is checked.c
- a column index to look in. If equal to -1, selected column is checked.
-
-
Method Detail
-
checkComponent
public boolean checkComponent(Component comp)
Description copied from interface:ComponentChooser
Check if the component argument meets the search criteria.- Specified by:
checkComponent
in interfaceComponentChooser
- Parameters:
comp
- Component to check.- Returns:
true
when the component conforms to the search criteria;false
otherwise.
-
getDescription
public String getDescription()
Description copied from interface:ComponentChooser
Returns searched component description.- Specified by:
getDescription
in interfaceComponentChooser
- Returns:
- a String representing the description value
-
-