Package org.netbeans.jemmy.util
Class NameComponentChooser
java.lang.Object
org.netbeans.jemmy.util.NameComponentChooser
- All Implemented Interfaces:
ComponentChooser
Specifies criteria for component lookup basing on component name.
By default uses new Operator.DefaultStringComparator(true, true) compa
- Author:
- Nathan Paris (Nathan_Paris@adp.com), Alexandre Iline (alexandre.iline@sun.com)
-
Constructor Summary
ConstructorsConstructorDescriptionNameComponentChooser
(String name) Creates an instance to search for a component by name using exact comparision.NameComponentChooser
(String name, Operator.StringComparator comparator) Creates an instance to search for a component by name. -
Method Summary
Modifier and TypeMethodDescriptionboolean
checkComponent
(Component component) Check if the component argument meets the search criteria.Returns searched component description.
-
Constructor Details
-
NameComponentChooser
Creates an instance to search for a component by name.- Parameters:
name
- Expecten component name pattern.comparator
- Comparator for a comparision of a component name with a pattern.
-
NameComponentChooser
Creates an instance to search for a component by name using exact comparision.- Parameters:
name
- Expecten component name pattern.
-
-
Method Details
-
checkComponent
Description copied from interface:ComponentChooser
Check if the component argument meets the search criteria.- Specified by:
checkComponent
in interfaceComponentChooser
- Parameters:
component
- Component to check.- Returns:
true
when the component conforms to the search criteria;false
otherwise.
-
getDescription
Description copied from interface:ComponentChooser
Returns searched component description.- Specified by:
getDescription
in interfaceComponentChooser
- Returns:
- a String representing the description value
-