@RunsInCurrentThread public interface JTableCellReader
JTable
as expected in a test.
Note: methods in this interface are not guaranteed to be executed in the event dispatch thread (EDT.) Clients are responsible for invoking them in the EDT.
Modifier and Type | Method and Description |
---|---|
Color |
backgroundAt(JTable table,
int row,
int column)
Returns the background color of the cell renderer for the given table cell.
|
Font |
fontAt(JTable table,
int row,
int column)
Returns the font of the cell renderer for the given table cell.
|
Color |
foregroundAt(JTable table,
int row,
int column)
Returns the foreground color of the cell renderer for the given table cell.
|
String |
valueAt(JTable table,
int row,
int column)
Returns the internal value of a cell in a
as expected in a test. |
String valueAt(JTable table, int row, int column)
JTable
as expected in a test.
Note: Implementations of this method may not guaranteed to be executed in the event dispatch thread (EDT.) Clients are responsible for invoking this method in the EDT.
table
- the given JTable
.row
- the row index of the cell.column
- the column index of the cell.JTable
as expected in a test.Font fontAt(JTable table, int row, int column)
Note: Implementations of this method may not guaranteed to be executed in the event dispatch thread (EDT.) Clients are responsible for invoking this method in the EDT.
table
- the given JTable
.row
- the row index of the cell.column
- the column index of the cell.Color backgroundAt(JTable table, int row, int column)
Note: Implementations of this method may not guaranteed to be executed in the event dispatch thread (EDT.) Clients are responsible for invoking this method in the EDT.
table
- the given JTable
.row
- the row index of the cell.column
- the column index of the cell.Color foregroundAt(JTable table, int row, int column)
Note: Implementations of this method may not guaranteed to be executed in the event dispatch thread (EDT.) Clients are responsible for invoking this method in the EDT.
table
- the given JTable
.row
- the row index of the cell.column
- the column index of the cell.Copyright © 2007-2013 FEST (Fixtures for Easy Software Testing). All Rights Reserved.