public class TableCell extends Object
JTable
.Modifier and Type | Class and Description |
---|---|
static class |
TableCell.TableCellBuilder
Factory of
TableCell 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.@Nonnull public static TableCell.TableCellBuilder row(int row)
Starting point for the creation of a TableCell
.
Example:
// import static org.assertj.swing.data.TableCell.row; TableCell cell = row(5).column(3);
row
- the row index of the table cell to create.Copyright © 2014-2015 AssertJ. All Rights Reserved.