Uses of Interface
org.uispec4j.finder.ComponentMatcher

Packages that use ComponentMatcher
org.uispec4j Provides classes for handling user interface components. 
org.uispec4j.finder Contains utility classes for the components searches mechanism. 
 

Uses of ComponentMatcher in org.uispec4j
 

Methods in org.uispec4j with parameters of type ComponentMatcher
 Assertion Panel.containsComponent(ComponentMatcher matcher)
           
 java.awt.Component Panel.findSwingComponent(ComponentMatcher matcher)
           
 UIComponent Panel.findUIComponent(ComponentMatcher matcher)
           
 Button Panel.getButton(ComponentMatcher matcher)
           
 CheckBox Panel.getCheckBox(ComponentMatcher matcher)
           
 ComboBox Panel.getComboBox(ComponentMatcher matcher)
           
 DateSpinner Panel.getDateSpinner(ComponentMatcher matcher)
           
 Desktop Panel.getDesktop(ComponentMatcher matcher)
           
 ListBox Panel.getListBox(ComponentMatcher matcher)
           
 ListSpinner Panel.getListSpinner(ComponentMatcher matcher)
           
 NumberSpinner Panel.getNumberSpinner(ComponentMatcher matcher)
           
 Panel Panel.getPanel(ComponentMatcher matcher)
           
 PasswordField Panel.getPasswordField(ComponentMatcher matcher)
           
 ProgressBar Panel.getProgressBar(ComponentMatcher matcher)
           
 RadioButton Panel.getRadioButton(ComponentMatcher matcher)
           
 Slider Panel.getSlider(ComponentMatcher matcher)
           
 Spinner Panel.getSpinner(ComponentMatcher matcher)
           
 java.awt.Component[] Panel.getSwingComponents(ComponentMatcher matcher)
           
 TabGroup Panel.getTabGroup(ComponentMatcher matcher)
           
 Table Panel.getTable(ComponentMatcher matcher)
           
 TextBox Panel.getTextBox(ComponentMatcher matcher)
           
 ToggleButton Panel.getToggleButton(ComponentMatcher matcher)
           
 Tree Panel.getTree(ComponentMatcher matcher)
           
 UIComponent[] Panel.getUIComponents(ComponentMatcher matcher)
           
 

Uses of ComponentMatcher in org.uispec4j.finder
 

Fields in org.uispec4j.finder declared as ComponentMatcher
static ComponentMatcher ComponentMatcher.ALL
           
 

Methods in org.uispec4j.finder that return ComponentMatcher
static ComponentMatcher ComponentMatchers.and(ComponentMatcher... matchers)
          Matches components that match all its sub-matchers.
static ComponentMatcher ComponentMatchers.componentLabelFor(java.lang.String labelName)
          Matches components based on labels (very useful when dealing with forms).
static ComponentMatcher ComponentMatchers.displayedNameIdentity(java.lang.String reference)
          Matches components whose displayed name is exactly the same as the reference.
static ComponentMatcher ComponentMatchers.displayedNameRegexp(java.lang.String reference)
          Matches components whose displayed name matches with the regexp reference.
static ComponentMatcher ComponentMatchers.displayedNameSubstring(java.lang.String reference)
          Matches components whose displayed name is a substring of the reference.
static
<T extends java.awt.Component>
ComponentMatcher
ComponentMatchers.fromClass(java.lang.Class<T> swingClass)
          Matches components that are instances of the class.
static ComponentMatcher ComponentMatchers.innerNameIdentity(java.lang.String reference)
          Matches components whose inner name is exactly the same as the reference.
static ComponentMatcher ComponentMatchers.innerNameRegexp(java.lang.String reference)
          Matches components whose inner name matches with the regexp reference.
static ComponentMatcher ComponentMatchers.innerNameSubstring(java.lang.String reference)
          Matches components whose inner name is a substring of the reference.
static ComponentMatcher ComponentMatchers.intersection(ComponentMatcher... matchers)
          Deprecated. See ComponentMatchers.and(ComponentMatcher...)
static ComponentMatcher ComponentMatchers.not(ComponentMatcher matcher)
          Matches components rejected by the inner matcher.
static ComponentMatcher ComponentMatchers.or(ComponentMatcher... matchers)
          Matches components that match at least one of its sub-matchers.
static ComponentMatcher ComponentMatchers.toolTipEquals(java.lang.String text)
           
static ComponentMatcher ComponentMatchers.union(ComponentMatcher... matchers)
          Deprecated. See ComponentMatchers.or(ComponentMatcher...)
 

Methods in org.uispec4j.finder with parameters of type ComponentMatcher
static ComponentMatcher ComponentMatchers.and(ComponentMatcher... matchers)
          Matches components that match all its sub-matchers.
 java.awt.Component ComponentFinder.findComponent(ComponentMatcher matcher)
           
 java.awt.Component ComponentFinder.getComponent(ComponentMatcher matcher)
           
 java.awt.Component[] ComponentFinder.getComponents(ComponentMatcher matcher)
           
static ComponentMatcher ComponentMatchers.intersection(ComponentMatcher... matchers)
          Deprecated. See ComponentMatchers.and(ComponentMatcher...)
static ComponentMatcher ComponentMatchers.not(ComponentMatcher matcher)
          Matches components rejected by the inner matcher.
static ComponentMatcher ComponentMatchers.or(ComponentMatcher... matchers)
          Matches components that match at least one of its sub-matchers.
static ComponentMatcher ComponentMatchers.union(ComponentMatcher... matchers)
          Deprecated. See ComponentMatchers.or(ComponentMatcher...)
 



Copyright © 2004-2010. All Rights Reserved.