Uses of Class
org.fest.swing.core.GenericTypeMatcher

Packages that use GenericTypeMatcher
org.fest.swing.core Building blocks for all FEST-Swing fixtures. 
org.fest.swing.core.matcher Common implementations of GenericTypeMatcher
org.fest.swing.driver Drivers that simulate user input on GUI Components. 
org.fest.swing.finder Support for testing time-consuming tasks. 
org.fest.swing.fixture The power and flexibility of FEST-Swing come from the fixtures in this package. 
 

Uses of GenericTypeMatcher in org.fest.swing.core
 

Methods in org.fest.swing.core with parameters of type GenericTypeMatcher
<T extends Component>
T
BasicComponentFinder.find(Container root, GenericTypeMatcher<T> m)
          Finds a Component using the given GenericTypeMatcher in the hierarchy under the given root.
<T extends Component>
T
ComponentFinder.find(Container root, GenericTypeMatcher<T> m)
          Finds a Component using the given GenericTypeMatcher in the hierarchy under the given root.
<T extends Component>
T
BasicComponentFinder.find(GenericTypeMatcher<T> m)
          Finds a Component using the given GenericTypeMatcher.
<T extends Component>
T
ComponentFinder.find(GenericTypeMatcher<T> m)
          Finds a Component using the given GenericTypeMatcher.
<T extends Component>
Collection<T>
BasicComponentFinder.findAll(Container root, GenericTypeMatcher<T> m)
          Returns all the Components under the given root that match the search criteria specified in the given GenericTypeMatcher.
<T extends Component>
Collection<T>
ComponentFinder.findAll(Container root, GenericTypeMatcher<T> m)
          Returns all the Components under the given root that match the search criteria specified in the given GenericTypeMatcher.
<T extends Component>
Collection<T>
BasicComponentFinder.findAll(GenericTypeMatcher<T> m)
          Returns all the Components that match the search criteria specified in the given GenericTypeMatcher.
<T extends Component>
Collection<T>
ComponentFinder.findAll(GenericTypeMatcher<T> m)
          Returns all the Components that match the search criteria specified in the given GenericTypeMatcher.
 

Uses of GenericTypeMatcher in org.fest.swing.core.matcher
 

Subclasses of GenericTypeMatcher in org.fest.swing.core.matcher
 class DialogMatcher
          Understands matching a Dialog by name, title and visibility on the screen.
 class FrameMatcher
          Understands matching a Frame by type, name or title.
 class JButtonMatcher
          Understands matching a JButton by name, text and visibility on the screen.
 class JLabelMatcher
          Understands matching a JLabel by type, name or text.
 class JTextComponentMatcher
          Understands matching a JTextComponent by type, name or text.
 class NamedComponentMatcherTemplate<T extends Component>
          Understands a template for matching components by name.
 

Uses of GenericTypeMatcher in org.fest.swing.driver
 

Methods in org.fest.swing.driver with parameters of type GenericTypeMatcher
 JMenuItem JPopupMenuDriver.menuItem(JPopupMenu popupMenu, GenericTypeMatcher<? extends JMenuItem> matcher)
          Finds a JMenuItem, contained in the Container, that matches the specified search criteria.
 

Uses of GenericTypeMatcher in org.fest.swing.finder
 

Methods in org.fest.swing.finder with parameters of type GenericTypeMatcher
static DialogFinder WindowFinder.findDialog(GenericTypeMatcher<? extends Dialog> matcher)
          Creates a new DialogFinder capable of looking up a Dialog using the provided matcher.
static JFileChooserFinder JFileChooserFinder.findFileChooser(GenericTypeMatcher<? extends JFileChooser> matcher)
          Creates a new JFileChooserFinder capable of looking up a JFileChooser using the given matcher.
static FrameFinder WindowFinder.findFrame(GenericTypeMatcher<? extends Frame> matcher)
          Creates a new FrameFinder capable of looking up a Frame using the provided matcher.
static JOptionPaneFinder JOptionPaneFinder.findOptionPane(GenericTypeMatcher<? extends JOptionPane> matcher)
          Creates a new JOptionPaneFinder capable of looking up a JOptionPane using the given matcher.
 

Constructors in org.fest.swing.finder with parameters of type GenericTypeMatcher
ComponentFinderTemplate(GenericTypeMatcher<? extends T> matcher)
          Creates a new ComponentFinderTemplate.
DialogFinder(GenericTypeMatcher<? extends Dialog> matcher)
          Creates a new DialogFinder.
FrameFinder(GenericTypeMatcher<? extends Frame> matcher)
          Creates a new FrameFinder.
JFileChooserFinder(GenericTypeMatcher<? extends JFileChooser> matcher)
          Creates a new JFileChooserFinder.
JOptionPaneFinder(GenericTypeMatcher<? extends JOptionPane> matcher)
          Creates a new JOptionPaneFinder.
WindowFinderTemplate(GenericTypeMatcher<? extends T> matcher)
          Creates a new WindowFinderTemplate.
 

Uses of GenericTypeMatcher in org.fest.swing.fixture
 

Methods in org.fest.swing.fixture with parameters of type GenericTypeMatcher
 JButtonFixture ContainerFixture.button(GenericTypeMatcher<? extends JButton> matcher)
          Finds a JButton in this fixture's Container, that matches the specified search criteria.
 JButtonFixture ComponentContainerFixture.button(GenericTypeMatcher<? extends JButton> matcher)
          Finds a JButton in this fixture's Container, that matches the specified search criteria.
 JCheckBoxFixture ContainerFixture.checkBox(GenericTypeMatcher<? extends JCheckBox> matcher)
          Finds a JCheckBox in this fixture's Container, that matches the specified search criteria.
 JCheckBoxFixture ComponentContainerFixture.checkBox(GenericTypeMatcher<? extends JCheckBox> matcher)
          Finds a JCheckBox in this fixture's Container, that matches the specified search criteria.
 JComboBoxFixture ContainerFixture.comboBox(GenericTypeMatcher<? extends JComboBox> matcher)
          Finds a JComboBox in this fixture's Container, that matches the specified search criteria.
 JComboBoxFixture ComponentContainerFixture.comboBox(GenericTypeMatcher<? extends JComboBox> matcher)
          Finds a JComboBox in this fixture's Container, that matches the specified search criteria.
 DialogFixture ContainerFixture.dialog(GenericTypeMatcher<? extends Dialog> matcher)
          Finds a Dialog that matches the specified search criteria.
 DialogFixture ComponentContainerFixture.dialog(GenericTypeMatcher<? extends Dialog> matcher)
          Finds a Dialog that matches the specified search criteria.
 DialogFixture ContainerFixture.dialog(GenericTypeMatcher<? extends Dialog> matcher, Timeout timeout)
          Finds a Dialog that matches the specified search criteria.
 DialogFixture ComponentContainerFixture.dialog(GenericTypeMatcher<? extends Dialog> matcher, Timeout timeout)
          Finds a Dialog that matches the specified search criteria.
 JFileChooserFixture ContainerFixture.fileChooser(GenericTypeMatcher<? extends JFileChooser> matcher)
          Finds a JFileChooser that matches the specified search criteria.
 JFileChooserFixture ComponentContainerFixture.fileChooser(GenericTypeMatcher<? extends JFileChooser> matcher)
          Finds a JFileChooser that matches the specified search criteria.
 JFileChooserFixture ContainerFixture.fileChooser(GenericTypeMatcher<? extends JFileChooser> matcher, Timeout timeout)
          Finds a JFileChooser that matches the specified search criteria.
 JFileChooserFixture ComponentContainerFixture.fileChooser(GenericTypeMatcher<? extends JFileChooser> matcher, Timeout timeout)
          Finds a JFileChooser that matches the specified search criteria.
protected
<C extends Component>
C
ContainerFixture.find(GenericTypeMatcher<? extends C> matcher)
          Finds a Component using the given GenericTypeMatcher, contained in this fixture's Container.
 JLabelFixture ContainerFixture.label(GenericTypeMatcher<? extends JLabel> matcher)
          Finds a JLabel in this fixture's Container, that matches the specified search criteria.
 JLabelFixture ComponentContainerFixture.label(GenericTypeMatcher<? extends JLabel> matcher)
          Finds a JLabel in this fixture's Container, that matches the specified search criteria.
 JListFixture ContainerFixture.list(GenericTypeMatcher<? extends JList> matcher)
          Finds a JList in this fixture's Container, that matches the specified search criteria.
 JListFixture ComponentContainerFixture.list(GenericTypeMatcher<? extends JList> matcher)
          Finds a JList in this fixture's Container, that matches the specified search criteria.
 JMenuItemFixture JPopupMenuFixture.menuItem(GenericTypeMatcher<? extends JMenuItem> matcher)
          Finds a JMenuItem, contained in this fixture's JPopupMenu, that matches the specified search criteria.
 JMenuItemFixture ContainerFixture.menuItem(GenericTypeMatcher<? extends JMenuItem> matcher)
          Finds a JMenuItem, contained in this fixture's Container, that matches the specified search criteria.
 JMenuItemFixture ComponentContainerFixture.menuItem(GenericTypeMatcher<? extends JMenuItem> matcher)
          Finds a JMenuItem, contained in this fixture's Container, that matches the specified search criteria.
 JPanelFixture ContainerFixture.panel(GenericTypeMatcher<? extends JPanel> matcher)
          Finds a JPanel in this fixture's Container, that matches the specified search criteria.
 JPanelFixture ComponentContainerFixture.panel(GenericTypeMatcher<? extends JPanel> matcher)
          Finds a JPanel in this fixture's Container, that matches the specified search criteria.
 JProgressBarFixture ContainerFixture.progressBar(GenericTypeMatcher<? extends JProgressBar> matcher)
          Finds a JProgressBar in this fixture's Container, that matches the specified search criteria.
 JProgressBarFixture ComponentContainerFixture.progressBar(GenericTypeMatcher<? extends JProgressBar> matcher)
          Finds a JProgressBar in this fixture's Container, that matches the specified search criteria.
 JRadioButtonFixture ContainerFixture.radioButton(GenericTypeMatcher<? extends JRadioButton> matcher)
          Finds a JRadioButton in this fixture's Container, that matches the specified search criteria.
 JRadioButtonFixture ComponentContainerFixture.radioButton(GenericTypeMatcher<? extends JRadioButton> matcher)
          Finds a JRadioButton in this fixture's Container, that matches the specified search criteria.
 JScrollBarFixture ContainerFixture.scrollBar(GenericTypeMatcher<? extends JScrollBar> matcher)
          Finds a JScrollBar in this fixture's Container, that matches the specified search criteria.
 JScrollBarFixture ComponentContainerFixture.scrollBar(GenericTypeMatcher<? extends JScrollBar> matcher)
          Finds a JScrollBar in this fixture's Container, that matches the specified search criteria.
 JScrollPaneFixture ContainerFixture.scrollPane(GenericTypeMatcher<? extends JScrollPane> matcher)
          Finds a JScrollPane in this fixture's Container, that matches the specified search criteria.
 JScrollPaneFixture ComponentContainerFixture.scrollPane(GenericTypeMatcher<? extends JScrollPane> matcher)
          Finds a JScrollPane in this fixture's Container, that matches the specified search criteria.
 JSliderFixture ContainerFixture.slider(GenericTypeMatcher<? extends JSlider> matcher)
          Finds a JSlider in this fixture's Container, that matches the specified search criteria.
 JSliderFixture ComponentContainerFixture.slider(GenericTypeMatcher<? extends JSlider> matcher)
          Finds a JSlider in this fixture's Container, that matches the specified search criteria.
 JSpinnerFixture ContainerFixture.spinner(GenericTypeMatcher<? extends JSpinner> matcher)
          Finds a JSpinner in this fixture's Container, that matches the specified search criteria.
 JSpinnerFixture ComponentContainerFixture.spinner(GenericTypeMatcher<? extends JSpinner> matcher)
          Finds a JSpinner in this fixture's Container, that matches the specified search criteria.
 JSplitPaneFixture ContainerFixture.splitPane(GenericTypeMatcher<? extends JSplitPane> matcher)
          Finds a JSplitPane in this fixture's Container, that matches the specified search criteria.
 JSplitPaneFixture ComponentContainerFixture.splitPane(GenericTypeMatcher<? extends JSplitPane> matcher)
          Finds a JSplitPane in this fixture's Container, that matches the specified search criteria.
 JTabbedPaneFixture ContainerFixture.tabbedPane(GenericTypeMatcher<? extends JTabbedPane> matcher)
          Finds a JTabbedPane in this fixture's Container, that matches the specified search criteria.
 JTabbedPaneFixture ComponentContainerFixture.tabbedPane(GenericTypeMatcher<? extends JTabbedPane> matcher)
          Finds a JTabbedPane in this fixture's Container, that matches the specified search criteria.
 JTableFixture ContainerFixture.table(GenericTypeMatcher<? extends JTable> matcher)
          Finds a JTable in this fixture's Container, that matches the specified search criteria.
 JTableFixture ComponentContainerFixture.table(GenericTypeMatcher<? extends JTable> matcher)
          Finds a JTable in this fixture's Container, that matches the specified search criteria.
 JTextComponentFixture ContainerFixture.textBox(GenericTypeMatcher<? extends JTextComponent> matcher)
          Finds a JTextComponent in this fixture's Container managed by this fixture, that matches the specified search criteria.
 JTextComponentFixture ComponentContainerFixture.textBox(GenericTypeMatcher<? extends JTextComponent> matcher)
          Finds a JTextComponent in this fixture's Container managed by this fixture, that matches the specified search criteria.
 JToggleButtonFixture ContainerFixture.toggleButton(GenericTypeMatcher<? extends JToggleButton> matcher)
          Finds a JToggleButton in this fixture's Container, that matches the specified search criteria.
 JToggleButtonFixture ComponentContainerFixture.toggleButton(GenericTypeMatcher<? extends JToggleButton> matcher)
          Finds a JToggleButton in this fixture's Container, that matches the specified search criteria.
 JToolBarFixture ContainerFixture.toolBar(GenericTypeMatcher<? extends JToolBar> matcher)
          Finds a JToolBar in this fixture's Container, that matches the specified search criteria.
 JToolBarFixture ComponentContainerFixture.toolBar(GenericTypeMatcher<? extends JToolBar> matcher)
          Finds a JToolBar in this fixture's Container, that matches the specified search criteria.
 JTreeFixture ContainerFixture.tree(GenericTypeMatcher<? extends JTree> matcher)
          Finds a JTree in this fixture's Container, that matches the specified search criteria.
 JTreeFixture ComponentContainerFixture.tree(GenericTypeMatcher<? extends JTree> matcher)
          Finds a JTree in this fixture's Container, that matches the specified search criteria.
 



Copyright © 2007-2011 FEST (Fixtures for Easy Software Testing). All Rights Reserved.