|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TableCell | |
---|---|
org.fest.swing.data | Simple (but useful) data structures. |
org.fest.swing.driver |
Drivers that simulate user input on GUI s. |
org.fest.swing.fixture | The power and flexibility of FEST-Swing come from the fixtures in this package. |
Uses of TableCell in org.fest.swing.data |
---|
Methods in org.fest.swing.data that return TableCell | |
---|---|
TableCell |
TableCell.TableCellBuilder.column(int column)
Creates a new table cell using the row index specified in and the
column index specified as the argument in this method. |
TableCell |
TableCellInSelectedRow.findCell(JTable table,
JTableCellReader cellReader)
Finds a cell in the given that belongs to the first selected row and has a matching
column index. |
TableCell |
TableCellFinder.findCell(JTable table,
JTableCellReader cellReader)
Finds a cell in the given based on some search criteria specified by this finder. |
TableCell |
TableCellInRowByValue.findCell(JTable table,
JTableCellReader cellReader)
Finds a cell in the given that:
is located in the first row whose values match the given ones
has a matching row index
|
TableCell |
TableCellByColumnId.findCell(JTable table,
JTableCellReader cellReader)
Finds a cell in the given that has a matching row index and column id. |
Uses of TableCell in org.fest.swing.driver |
---|
Methods in org.fest.swing.driver that return TableCell | |
---|---|
TableCell |
JTableDriver.cell(JTable table,
Pattern pattern)
Returns a cell from the given whose value matches the given regular expression pattern. |
TableCell |
JTableDriver.cell(JTable table,
String value)
Returns a cell from the given whose value matches the given one. |
TableCell |
JTableDriver.cell(JTable table,
TableCellFinder cellFinder)
Returns a cell from the given using the given cell finder. |
Methods in org.fest.swing.driver with parameters of type TableCell | |
---|---|
Color |
JTableDriver.background(JTable table,
TableCell cell)
Returns the background color of the given table cell. |
void |
JTableDriver.cancelCellEditing(JTable table,
TableCell cell)
Cancels editing the given cell of the , using this driver's
. |
Rectangle |
JTableLocation.cellBounds(JTable table,
TableCell cell)
Returns the bounds of the given cell. |
Component |
JTableDriver.cellEditor(JTable table,
TableCell cell)
Returns the editor in the given cell of the , using this driver's
. |
void |
JTableDriver.click(JTable table,
TableCell cell,
MouseButton mouseButton,
int times)
Clicks the given cell, using the specified mouse button, the given number of times. |
void |
JTableDriver.drag(JTable table,
TableCell cell)
Starts a drag operation at the location of the given table cell. |
void |
JTableDriver.drop(JTable table,
TableCell cell)
Starts a drop operation at the location of the given table cell. |
void |
JTableDriver.enterValueInCell(JTable table,
TableCell cell,
String value)
Enters the given value in the given cell of the , using this driver's
. |
Font |
JTableDriver.font(JTable table,
TableCell cell)
Returns the font of the given table cell. |
Color |
JTableDriver.foreground(JTable table,
TableCell cell)
Returns the foreground color of the given table cell. |
Point |
JTableDriver.pointAt(JTable table,
TableCell cell)
Converts the given table cell into a coordinate pair. |
void |
JTableDriver.requireCellValue(JTable table,
TableCell cell,
Pattern pattern)
Asserts that the value of the given cell matches the given regular expression pattern. |
void |
JTableDriver.requireCellValue(JTable table,
TableCell cell,
String value)
Asserts that the value of the given cell matches the given value. |
void |
JTableDriver.requireEditable(JTable table,
TableCell cell)
Asserts that the given table cell is editable. |
void |
JTableDriver.requireNotEditable(JTable table,
TableCell cell)
Asserts that the given table cell is not editable. |
void |
JTableDriver.selectCell(JTable table,
TableCell cell)
Selects the given cell, if it is not selected already. |
void |
JTableDriver.selectCells(JTable table,
TableCell[] cells)
Selects the given cells of the . |
JPopupMenu |
JTableDriver.showPopupMenuAt(JTable table,
TableCell cell)
Shows a pop-up menu at the given table cell. |
void |
JTableDriver.startCellEditing(JTable table,
TableCell cell)
Starts editing the given cell of the , using this driver's
. |
void |
JTableDriver.stopCellEditing(JTable table,
TableCell cell)
Stops editing the given cell of the , using this driver's
. |
void |
JTableDriver.validate(JTable table,
TableCell cell)
Validates that the given table cell is non null and its indices are not out of bounds. |
static void |
JTableCellValidator.validateCellIndices(JTable table,
TableCell cell)
Validates that the given table cell is non null and its indices are not out of bounds. |
static void |
JTableCellValidator.validateNotNull(TableCell cell)
Validates that the given table cell is not null . |
String |
JTableDriver.value(JTable table,
TableCell cell)
Returns the String representation of the value at the given cell, using this driver's
. |
Uses of TableCell in org.fest.swing.fixture |
---|
Methods in org.fest.swing.fixture that return TableCell | |
---|---|
TableCell |
JTableFixture.cell(Pattern valuePattern)
Returns a fixture that manages the table cell whose value matches the given regular expression pattern. |
TableCell |
JTableFixture.cell(String value)
Returns a fixture that manages the table cell whose value matches the given one. |
Methods in org.fest.swing.fixture with parameters of type TableCell | |
---|---|
ColorFixture |
JTableFixture.backgroundAt(TableCell cell)
Returns a fixture that verifies the background color of the given table cell. |
JTableCellFixture |
JTableFixture.cell(TableCell cell)
Returns a fixture that manages the table cell specified by the given row and column. |
JTableFixture |
JTableFixture.click(TableCell cell,
MouseButton button)
Simulates a user clicking a cell in this fixture's once, using the specified mouse
button. |
JTableFixture |
JTableFixture.click(TableCell cell,
MouseClickInfo mouseClickInfo)
Simulates a user clicking a cell in this fixture's , using the specified mouse button
the given number of times. |
JTableFixture |
JTableFixture.drag(TableCell cell)
Simulates a user dragging an item from this fixture's . |
JTableFixture |
JTableFixture.drop(TableCell cell)
Simulates a user dropping an item to this fixture's . |
JTableFixture |
JTableFixture.enterValue(TableCell cell,
String value)
Enters the given value in the given cell of this fixture's , using this fixture's
. |
FontFixture |
JTableFixture.fontAt(TableCell cell)
Returns a fixture that verifies the font of the given table cell. |
ColorFixture |
JTableFixture.foregroundAt(TableCell cell)
Returns a fixture that verifies the foreground color of the given table cell. |
Point |
JTableFixture.pointAt(TableCell cell)
Converts the given cell into a coordinate pair. |
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.requireEditable(TableCell cell)
Asserts that the given cell in this fixture's is editable. |
JTableFixture |
JTableFixture.requireNotEditable(TableCell cell)
Asserts that the given cell in this fixture's is not editable. |
JTableFixture |
JTableFixture.selectCell(TableCell cell)
Simulates a user selecting the given cell (row and column) of this fixture's . |
JTableFixture |
JTableFixture.selectCells(TableCell... cells)
Simulates a user selecting the given cells of this fixture's . |
JPopupMenuFixture |
JTableFixture.showPopupMenuAt(TableCell cell)
Shows a pop-up menu at the given cell. |
String |
JTableFixture.valueAt(TableCell cell)
Returns the String representation of the value of a cell in this fixture's
, using this fixture's . |
Constructors in org.fest.swing.fixture with parameters of type TableCell | |
---|---|
JTableCellFixture(JTableFixture table,
TableCell cell)
Creates a new . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |