| Package | Description |
|---|---|
| org.assertj.swing.fixture |
Public API, source of FEST's power and flexibility.
|
| Modifier and Type | Method and Description |
|---|---|
JSpinnerFixture |
JSpinnerFixture.decrement()
Simulates a user decrementing the value of this fixture's
JSpinner one time. |
JSpinnerFixture |
JSpinnerFixture.decrement(int times)
Simulates a user decrementing the value of this fixture's
JSpinner the given number of times. |
JSpinnerFixture |
JSpinnerFixture.enterText(String text)
Simulates a user entering the given text in this fixture's
JSpinner (assuming its editor has a
JTextComponent under it.) This method does not commit the value to the JSpinner. |
JSpinnerFixture |
JSpinnerFixture.enterTextAndCommit(String text)
Simulates a user entering and committing the given text in this fixture's
JSpinner (assuming its editor has
a JTextComponent under it.) |
JSpinnerFixture |
JSpinnerFixture.increment()
Simulates a user incrementing the value of this fixture's
JSpinner one time. |
JSpinnerFixture |
JSpinnerFixture.increment(int times)
Simulates a user incrementing the value of this fixture's
JSpinner the given number of times. |
JSpinnerFixture |
JSpinnerFixture.requireValue(Object value)
Verifies that the value of this fixture's
JSpinner is equal to the given one. |
JSpinnerFixture |
JSpinnerFixture.select(Object value)
Selects the given value in this fixture's
JSpinner. |
JSpinnerFixture |
ComponentContainerFixture.spinner()
Returns a
JSpinner found in this fixture's Container. |
JSpinnerFixture |
AbstractContainerFixture.spinner() |
JSpinnerFixture |
ComponentContainerFixture.spinner(GenericTypeMatcher<? extends JSpinner> matcher)
Finds a
JSpinner in this fixture's Container, that matches the specified search criteria. |
JSpinnerFixture |
AbstractContainerFixture.spinner(GenericTypeMatcher<? extends JSpinner> matcher) |
JSpinnerFixture |
ComponentContainerFixture.spinner(String name)
Finds a
JSpinner in this fixture's Container, which name matches the specified one. |
JSpinnerFixture |
AbstractContainerFixture.spinner(String name) |
Copyright © 2014 AssertJ. All rights reserved.