| Modifier and Type | Class and Description |
|---|---|
static class |
TableCell.TableCellBuilder
Understands creation of
s. |
| Modifier and Type | Field and Description |
|---|---|
int |
column
The column of the cell.
|
int |
row
The row of the cell.
|
| Modifier | Constructor and Description |
|---|---|
protected |
TableCell(int row,
int column)
Creates a new
TableCell. |
public final int row
public final int column
protected TableCell(int row,
int column)
TableCell.row - the row of the cell.column - the column of the cell.public static TableCell.TableCellBuilder row(int row)
TableCell.
Example:
// import static org.fest.swing.data.TableCell.row; TableCell cell = row(5).column(3);
row - the row index of the table cell to create.Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.