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

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

Uses of JListFixture in org.fest.swing.fixture
 

Methods in org.fest.swing.fixture that return JListFixture
 JListFixture JListFixture.cellReader(JListCellReader cellReader)
          Updates the implementation of JListCellReader to use when comparing internal values of this fixture's JList and the values expected in a test.
 JListFixture JListFixture.clearSelection()
          Clears the selection in this fixture's JList.
 JListFixture JListFixture.click()
          Simulates a user clicking this fixture's JList.
 JListFixture JListFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JList.
 JListFixture JListFixture.click(MouseClickInfo mouseClickInfo)
          Simulates a user clicking this fixture's JList.
 JListFixture JListFixture.clickItem(int index)
          Simulates a user clicking an item in this fixture's JList.
 JListFixture JListFixture.clickItem(Pattern pattern)
          Simulates a user clicking an item in this fixture's JList.
 JListFixture JListFixture.clickItem(String text)
          Simulates a user clicking an item in this fixture's JList.
 JListFixture JListFixture.doubleClick()
          Simulates a user double-clicking this fixture's JList.
 JListFixture JListFixture.doubleClickItem(int index)
          Deprecated. to be removed in version 2.0. Use item(int) and JListItemFixture.doubleClick() instead.
 JListFixture JListFixture.doubleClickItem(String text)
          Deprecated. to be removed in version 2.0. Use item(String) and JListItemFixture.doubleClick() instead.
 JListFixture JListFixture.drag(int index)
          Simulates a user dragging an item from this fixture's JList.
 JListFixture JListFixture.drag(Pattern pattern)
          Simulates a drag operation at the location of the first item in this fixture's JList matching the given regular expression pattern.
 JListFixture JListFixture.drag(String text)
          Simulates a drag operation at the location of the first item in this fixture's JList matching the given value.
 JListFixture JListFixture.drop()
          Simulates a user dropping an item at the center of this fixture's JList.
 JListFixture JListFixture.drop(int index)
          Simulates a user dropping an item to this fixture's JList.
 JListFixture JListFixture.drop(Pattern pattern)
          Ends a drag operation at the location of the first item matching the given regular expression pattern.
 JListFixture JListFixture.drop(String text)
          Ends a drag operation at the location of the first item matching the given value.
 JListFixture JListFixture.focus()
          Gives input focus to this fixture's JList.
 JListFixture ContainerFixture.list()
          Returns a JList found in this fixture's Container.
 JListFixture ComponentContainerFixture.list()
          Returns a JList found in this fixture's Container.
 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.
 JListFixture ContainerFixture.list(String name)
          Finds a JList in this fixture's Container, which name matches the specified one.
 JListFixture ComponentContainerFixture.list(String name)
          Finds a JList in this fixture's Container, which name matches the specified one.
 JListFixture JListFixture.pressAndReleaseKey(KeyPressInfo keyPressInfo)
          Simulates a user pressing given key with the given modifiers on this fixture's JList.
 JListFixture JListFixture.pressAndReleaseKeys(int... keyCodes)
          Simulates a user pressing and releasing the given keys on this fixture's JList.
 JListFixture JListFixture.pressKey(int keyCode)
          Simulates a user pressing the given key on this fixture's JList.
 JListFixture JListFixture.releaseKey(int keyCode)
          Simulates a user releasing the given key on this fixture's JList.
 JListFixture JListFixture.requireDisabled()
          Asserts that this fixture's JList is not enabled.
 JListFixture JListFixture.requireEnabled()
          Asserts that this fixture's JList is enabled.
 JListFixture JListFixture.requireEnabled(Timeout timeout)
          Asserts that this fixture's JList is enabled.
 JListFixture JListFixture.requireFocused()
          Asserts that this fixture's JList has input focus.
 JListFixture JListFixture.requireItemCount(int expected)
          Verifies that this fixture's JList has the expected number of items
 JListFixture JListFixture.requireNoSelection()
          Verifies that this fixture's JList does not have any selection.
 JListFixture JListFixture.requireNotVisible()
          Asserts that this fixture's JList is not visible.
 JListFixture JListFixture.requireSelectedItems(int... indices)
          Verifies that the given item indices are selected in this fixture's JList.
 JListFixture JListFixture.requireSelectedItems(Pattern[] patterns)
          Verifies that the String representations of the selected items in this fixture's JList match the given regular expression patterns.
 JListFixture JListFixture.requireSelectedItems(String... items)
          Verifies that the String representations of the selected items in this fixture's JList match the given text items.
 JListFixture JListFixture.requireSelection(int index)
          Verifies that the index of the selected item in this fixture's JList is equal to the given value.
 JListFixture JListFixture.requireSelection(Pattern pattern)
          Verifies that the String representation of the selected item in this fixture's JList matches the given regular expression pattern.
 JListFixture JListFixture.requireSelection(String text)
          Verifies that the String representation of the selected item in this fixture's JList matches the given text.
 JListFixture JListFixture.requireToolTip(Pattern pattern)
          Asserts that the toolTip in this fixture's JList matches the given regular expression pattern.
 JListFixture JListFixture.requireToolTip(String expected)
          Asserts that the toolTip in this fixture's JList matches the given value.
 JListFixture JListFixture.requireVisible()
          Asserts that this fixture's JList is visible.
 JListFixture JListFixture.rightClick()
          Simulates a user right-clicking this fixture's JList.
 JListFixture JListFixture.selectItem(int index)
          Simulates a user selecting an item in this fixture's JList.
 JListFixture JListFixture.selectItem(Pattern pattern)
          Simulates a user selecting an item in this fixture's JList.
 JListFixture JListFixture.selectItem(String text)
          Simulates a user selecting an item in this fixture's JList.
 JListFixture JListFixture.selectItems(int... indices)
          Simulates a user selecting the specified items in this fixture's JList.
 JListFixture JListFixture.selectItems(Pattern... patterns)
          Simulates a user selecting the specified items in this fixture's JList.
 JListFixture JListFixture.selectItems(Range.From from, Range.To to)
          Simulates a user selecting the items (in the specified range) in this fixture's JList.
 JListFixture JListFixture.selectItems(String... items)
          Simulates a user selecting the specified items in this fixture's JList.
 

Constructors in org.fest.swing.fixture with parameters of type JListFixture
JListItemFixture(JListFixture list, int index)
          Creates a new JListItemFixture.
 



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