Uses of Class
org.fest.swing.fixture.JTextComponentFixture

Packages that use JTextComponentFixture
org.fest.swing.fixture The power and flexibility of FEST-Swing come from the fixtures in this package. 
 

Uses of JTextComponentFixture in org.fest.swing.fixture
 

Methods in org.fest.swing.fixture that return JTextComponentFixture
 JTextComponentFixture JTextComponentFixture.click()
          Simulates a user clicking this fixture's JTextComponent.
 JTextComponentFixture JTextComponentFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JTextComponent.
 JTextComponentFixture JTextComponentFixture.click(MouseClickInfo mouseClickInfo)
          Simulates a user clicking this fixture's JTextComponent.
 JTextComponentFixture JTextComponentFixture.deleteText()
          Simulates a user deleting all the text in this fixture's JTextComponent.
 JTextComponentFixture JTextComponentFixture.doubleClick()
          Simulates a user double-clicking this fixture's JTextComponent.
 JTextComponentFixture JTextComponentFixture.enterText(String text)
          Simulates a user entering the given text in this fixture's JTextComponent.
 JTextComponentFixture JFileChooserFixture.fileNameTextBox()
          Returns a fixture that manages the field where the user can enter the name of the file to select in this fixture's JFileChooser.
 JTextComponentFixture JTextComponentFixture.focus()
          Gives input focus to this fixture's JTextComponent.
 JTextComponentFixture JTextComponentFixture.pressAndReleaseKey(KeyPressInfo keyPressInfo)
          Simulates a user pressing given key with the given modifiers on this fixture's JTextComponent.
 JTextComponentFixture JTextComponentFixture.pressAndReleaseKeys(int... keyCodes)
          Simulates a user pressing and releasing the given keys in this fixture's JTextComponent.
 JTextComponentFixture JTextComponentFixture.pressKey(int keyCode)
          Simulates a user pressing the given key on this fixture's JTextComponent.
 JTextComponentFixture JTextComponentFixture.releaseKey(int keyCode)
          Simulates a user releasing the given key on this fixture's JTextComponent.
 JTextComponentFixture JTextComponentFixture.requireDisabled()
          Asserts that this fixture's JTextComponent is disabled.
 JTextComponentFixture JTextComponentFixture.requireEditable()
          Asserts that this fixture's JTextComponent is editable.
 JTextComponentFixture JTextComponentFixture.requireEmpty()
          Asserts that the target text component does not contain any text.
 JTextComponentFixture JTextComponentFixture.requireEnabled()
          Asserts that this fixture's JTextComponent is enabled.
 JTextComponentFixture JTextComponentFixture.requireEnabled(Timeout timeout)
          Asserts that this fixture's JTextComponent is enabled.
 JTextComponentFixture JTextComponentFixture.requireFocused()
          Asserts that this fixture's JTextComponent has input focus.
 JTextComponentFixture JTextComponentFixture.requireNotEditable()
          Asserts that this fixture's JTextComponent is not editable.
 JTextComponentFixture JTextComponentFixture.requireNotVisible()
          Asserts that this fixture's JTextComponent is not visible.
 JTextComponentFixture JTextComponentFixture.requireText(Pattern pattern)
          Asserts that the text of this fixture's JTextComponent matches the given regular expression pattern.
 JTextComponentFixture JTextComponentFixture.requireText(String expected)
          Asserts that the text of this fixture's JTextComponent is equal to the specified value.
 JTextComponentFixture JTextComponentFixture.requireToolTip(Pattern pattern)
          Asserts that the toolTip in this fixture's JTextComponent matches the given regular expression pattern.
 JTextComponentFixture JTextComponentFixture.requireToolTip(String expected)
          Asserts that the toolTip in this fixture's JTextComponent matches the given value.
 JTextComponentFixture JTextComponentFixture.requireVisible()
          Asserts that this fixture's JTextComponent is visible.
 JTextComponentFixture JTextComponentFixture.rightClick()
          Simulates a user right-clicking this fixture's JTextComponent.
 JTextComponentFixture JTextComponentFixture.select(String text)
          Simulates a user selecting the given text contained in this fixture's JTextComponent.
 JTextComponentFixture JTextComponentFixture.selectAll()
          Simulates a user selecting all the text contained in this fixture's JTextComponent.
 JTextComponentFixture JTextComponentFixture.selectText(int start, int end)
          Simulates a user selecting a portion of the text contained in this fixture's JTextComponent.
 JTextComponentFixture JTextComponentFixture.setText(String text)
          Sets the text in this fixture's JTextComponent.
 JTextComponentFixture ContainerFixture.textBox()
          Returns a JTextComponent found in this fixture's Container.
 JTextComponentFixture ComponentContainerFixture.textBox()
          Returns a JTextComponent found in this fixture's Container.
 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.
 JTextComponentFixture ContainerFixture.textBox(String name)
          Finds a JTextComponent in this fixture's Container managed by this fixture, which name matches the specified one.
 JTextComponentFixture ComponentContainerFixture.textBox(String name)
          Finds a JTextComponent in this fixture's Container managed by this fixture, which name matches the specified one.
 



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