Uses of Class
org.fest.swing.core.matcher.JTextComponentMatcher

Packages that use JTextComponentMatcher
org.fest.swing.core.matcher Common implementations of GenericTypeMatcher
 

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

Methods in org.fest.swing.core.matcher that return JTextComponentMatcher
 JTextComponentMatcher JTextComponentMatcher.andShowing()
          Indicates that the JTextComponent to match should be showing on the screen.
 JTextComponentMatcher JTextComponentMatcher.andText(Pattern textPattern)
          Specifies the text to match.
 JTextComponentMatcher JTextComponentMatcher.andText(String newText)
          Specifies the text to match.
static JTextComponentMatcher JTextComponentMatcher.any()
          Creates a new JTextComponentMatcher that matches any JTextComponent.
static JTextComponentMatcher JTextComponentMatcher.withName(String name)
          Creates a new JTextComponentMatcher that matches a JTextComponent that: has a matching name (optionally) has matching text (optionally) is showing on the screen The following code listing shows how to match a JTextComponent by name and text: JTextComponentMatcher m = withName("lastName").
static JTextComponentMatcher JTextComponentMatcher.withText(Pattern textPattern)
          Creates a new JTextComponentMatcher that matches a JTextComponent by its text.
static JTextComponentMatcher JTextComponentMatcher.withText(String text)
          Creates a new JTextComponentMatcher that matches a JTextComponent by its text.
 



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