Uses of Class
org.fest.swing.fixture.JListFixture
Packages that use JListFixture
Package
Description
The power and flexibility of FEST-Swing come from the fixtures in
this package.
-
Uses of JListFixture in org.fest.swing.fixture
Fields in org.fest.swing.fixture declared as JListFixtureMethods in org.fest.swing.fixture that return JListFixtureModifier and TypeMethodDescriptionJListFixture.cellReader
(JListCellReader cellReader) Updates the implementation of
to use when comparing internal values of this fixture'sJListCellReader
and the values expected in a test.JList
JListFixture.clearSelection()
Clears the selection in this fixture's
.JList
JListFixture.click()
Simulates a user clicking this fixture's
.JList
JListFixture.click
(MouseButton button) Simulates a user clicking this fixture's
.JList
JListFixture.click
(MouseClickInfo mouseClickInfo) Simulates a user clicking this fixture's
.JList
JListFixture.clickItem
(int index) Simulates a user clicking an item in this fixture's
.JList
Simulates a user clicking an item in this fixture's
.JList
Simulates a user clicking an item in this fixture's
.JList
JListFixture.doubleClick()
Simulates a user double-clicking this fixture's
.JList
JListFixture.doubleClickItem
(int index) Deprecated.to be removed in version 2.0.JListFixture.doubleClickItem
(String text) Deprecated.to be removed in version 2.0.JListFixture.drag
(int index) Simulates a user dragging an item from this fixture's
.JList
Simulates a drag operation at the location of the first item in this fixture's
matching the given value.JList
Simulates a drag operation at the location of the first item in this fixture's
matching the given regular expression pattern.JList
JListFixture.drop()
Simulates a user dropping an item at the center of this fixture's
.JList
JListFixture.drop
(int index) Simulates a user dropping an item to this fixture's
.JList
Ends a drag operation at the location of the first item matching the given value.Ends a drag operation at the location of the first item matching the given regular expression pattern.JListFixture.focus()
Gives input focus to this fixture's
.JList
ComponentContainerFixture.list()
ComponentContainerFixture.list
(GenericTypeMatcher<? extends JList> matcher) ContainerFixture.list()
ContainerFixture.list
(GenericTypeMatcher<? extends JList> matcher) JListFixture.pressAndReleaseKey
(KeyPressInfo keyPressInfo) Simulates a user pressing given key with the given modifiers on this fixture's
.JList
JListFixture.pressAndReleaseKeys
(int... keyCodes) Simulates a user pressing and releasing the given keys on this fixture's
.JList
JListFixture.pressKey
(int keyCode) Simulates a user pressing the given key on this fixture's
.JList
JListFixture.releaseKey
(int keyCode) Simulates a user releasing the given key on this fixture's
.JList
JListFixture.requireDisabled()
Asserts that this fixture's
is not enabled.JList
JListFixture.requireEnabled()
Asserts that this fixture's
is enabled.JList
JListFixture.requireEnabled
(Timeout timeout) Asserts that this fixture's
is enabled.JList
JListFixture.requireFocused()
Asserts that this fixture's
has input focus.JList
JListFixture.requireItemCount
(int expected) Verifies that this fixture's
has the expected number of itemsJList
JListFixture.requireNoSelection()
Verifies that this fixture's
does not have any selection.JList
JListFixture.requireNotVisible()
Asserts that this fixture's
is not visible.JList
JListFixture.requireSelectedItems
(int... indices) Verifies that the given item indices are selected in this fixture's
.JList
JListFixture.requireSelectedItems
(String... items) Verifies that theString
representations of the selected items in this fixture's
match the given text items.JList
JListFixture.requireSelectedItems
(Pattern[] patterns) Verifies that theString
representations of the selected items in this fixture's
match the given regular expression patterns.JList
JListFixture.requireSelection
(int index) Verifies that the index of the selected item in this fixture's
is equal to the given value.JList
JListFixture.requireSelection
(String text) Verifies that theString
representation of the selected item in this fixture's
matches the given text.JList
JListFixture.requireSelection
(Pattern pattern) Verifies that theString
representation of the selected item in this fixture's
matches the given regular expression pattern.JList
JListFixture.requireToolTip
(String expected) Asserts that the toolTip in this fixture's
matches the given value.JList
JListFixture.requireToolTip
(Pattern pattern) Asserts that the toolTip in this fixture's
matches the given regular expression pattern.JList
JListFixture.requireVisible()
Asserts that this fixture's
is visible.JList
JListFixture.rightClick()
Simulates a user right-clicking this fixture's
.JList
JListFixture.selectItem
(int index) Simulates a user selecting an item in this fixture's
.JList
JListFixture.selectItem
(String text) Simulates a user selecting an item in this fixture's
.JList
JListFixture.selectItem
(Pattern pattern) Simulates a user selecting an item in this fixture's
.JList
JListFixture.selectItems
(int... indices) Simulates a user selecting the specified items in this fixture's
.JList
JListFixture.selectItems
(String... items) Simulates a user selecting the specified items in this fixture's
.JList
JListFixture.selectItems
(Pattern... patterns) Simulates a user selecting the specified items in this fixture's
.JList
JListFixture.selectItems
(Range.From from, Range.To to) Simulates a user selecting the items (in the specified range) in this fixture's
.JList
Constructors in org.fest.swing.fixture with parameters of type JListFixtureModifierConstructorDescriptionJListItemFixture
(JListFixture list, int index) Creates a newJListItemFixture
.