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

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

Uses of JTableFixture in org.fest.swing.fixture
 

Methods in org.fest.swing.fixture that return JTableFixture
 JTableFixture JTableFixture.cellReader(JTableCellReader cellReader)
          Updates the implementation of JTableCellReader to use when comparing internal values of this fixture's JTable and the values expected in a test.
 JTableFixture JTableFixture.cellWriter(JTableCellWriter cellWriter)
          Updates the implementation of JTableCellWriter to use when comparing internal values of this fixture's JTable and the values expected in a test.
 JTableFixture JTableFixture.click()
          Simulates a user clicking this fixture's JTable.
 JTableFixture JTableFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JTable.
 JTableFixture JTableFixture.click(MouseClickInfo mouseClickInfo)
          Simulates a user clicking this fixture's JTable.
 JTableFixture JTableFixture.click(TableCell cell, MouseButton button)
          Simulates a user clicking a cell in this fixture's JTable once, using the specified mouse button.
 JTableFixture JTableFixture.click(TableCell cell, MouseClickInfo mouseClickInfo)
          Simulates a user clicking a cell in this fixture's JTable, using the specified mouse button the given number of times.
 JTableFixture JTableFixture.doubleClick()
          Simulates a user double-clicking this fixture's JTable.
 JTableFixture JTableFixture.drag(TableCell cell)
          Simulates a user dragging an item from this fixture's JTable.
 JTableFixture JTableFixture.drop(TableCell cell)
          Simulates a user dropping an item to this fixture's JTable.
 JTableFixture JTableFixture.enterValue(TableCell cell, String value)
          Enters the given value in the given cell of this fixture's JTable, using this fixture's JTableCellWriter.
 JTableFixture JTableFixture.focus()
          Gives input focus to this fixture's JTable.
 JTableFixture JTableFixture.pressAndReleaseKey(KeyPressInfo keyPressInfo)
          Simulates a user pressing given key with the given modifiers on this fixture's JTable.
 JTableFixture JTableFixture.pressAndReleaseKeys(int... keyCodes)
          Simulates a user pressing and releasing the given keys on this fixture's JTable.
 JTableFixture JTableFixture.pressKey(int keyCode)
          Simulates a user pressing the given key on this fixture's JTable.
 JTableFixture JTableFixture.releaseKey(int keyCode)
          Simulates a user releasing the given key on this fixture's JTable.
 JTableFixture JTableFixture.requireCellValue(TableCell cell, Pattern pattern)
          Asserts that the value of the given cell matches the given regular expression pattern.
 JTableFixture JTableFixture.requireCellValue(TableCell cell, String value)
          Asserts that the value of the given cell matches the given value.
 JTableFixture JTableFixture.requireColumnCount(int expected)
          Asserts that this fixture's JTable has the given number of columns.
 JTableFixture JTableFixture.requireContents(String[][] contents)
          Asserts that the String representation of the cell values in this fixture's JTable is equal to the given String array.
 JTableFixture JTableFixture.requireDisabled()
          Asserts that this fixture's JTable is disabled.
 JTableFixture JTableFixture.requireEditable(TableCell cell)
          Asserts that the given cell in this fixture's JTable is editable.
 JTableFixture JTableFixture.requireEnabled()
          Asserts that this fixture's JTable is enabled.
 JTableFixture JTableFixture.requireEnabled(Timeout timeout)
          Asserts that this fixture's JTable is enabled.
 JTableFixture JTableFixture.requireFocused()
          Asserts that this fixture's JTable has input focus.
 JTableFixture JTableFixture.requireNoSelection()
          Verifies that this fixture's JTable does not have any selection.
 JTableFixture JTableFixture.requireNotEditable(TableCell cell)
          Asserts that the given cell in this fixture's JTable is not editable.
 JTableFixture JTableFixture.requireNotVisible()
          Asserts that this fixture's JTable is not visible.
 JTableFixture JTableFixture.requireRowCount(int expected)
          Asserts that this fixture's JTable has the given number of rows.
 JTableFixture JTableFixture.requireSelectedRows(int... rows)
          Asserts that the set of selected rows in this fixture's JTable contains to the given row indices.
 JTableFixture JTableFixture.requireToolTip(Pattern pattern)
          Asserts that the toolTip in this fixture's JTable matches the given regular expression pattern.
 JTableFixture JTableFixture.requireToolTip(String expected)
          Asserts that the toolTip in this fixture's JTable matches the given value.
 JTableFixture JTableFixture.requireVisible()
          Asserts that this fixture's JTable is visible.
 JTableFixture JTableFixture.rightClick()
          Simulates a user right-clicking this fixture's JTable.
 JTableFixture JTableFixture.selectCell(TableCell cell)
          Simulates a user selecting the given cell (row and column) of this fixture's JTable.
 JTableFixture JTableFixture.selectCells(TableCell... cells)
          Simulates a user selecting the given cells of this fixture's JTable.
 JTableFixture JTableFixture.selectRows(int... rows)
          Simulates a user selecting the given rows in this fixture's JTable.
 JTableFixture ContainerFixture.table()
          Returns a JTable found in this fixture's Container.
 JTableFixture ComponentContainerFixture.table()
          Returns a JTable found in this fixture's Container.
 JTableFixture ContainerFixture.table(GenericTypeMatcher<? extends JTable> matcher)
          Finds a JTable in this fixture's Container, that matches the specified search criteria.
 JTableFixture ComponentContainerFixture.table(GenericTypeMatcher<? extends JTable> matcher)
          Finds a JTable in this fixture's Container, that matches the specified search criteria.
 JTableFixture ContainerFixture.table(String name)
          Finds a JTable in this fixture's Container, which name matches the specified one.
 JTableFixture ComponentContainerFixture.table(String name)
          Finds a JTable in this fixture's Container, which name matches the specified one.
 

Constructors in org.fest.swing.fixture with parameters of type JTableFixture
JTableCellFixture(JTableFixture table, TableCell cell)
          Creates a new JTableCellFixture.
 



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