|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.fest.swing.data.TableCell
public class TableCell
Understands a cell in a
.
JTable
Nested Class Summary | |
---|---|
static class |
TableCell.TableCellBuilder
Understands creation of s. |
Field Summary | |
---|---|
int |
column
The column of the cell. |
int |
row
The row of the cell. |
Constructor Summary | |
---|---|
protected |
TableCell(int row,
int column)
Creates a new TableCell . |
Method Summary | |
---|---|
boolean |
equals(Object obj)
$ |
int |
hashCode()
$ |
static TableCell.TableCellBuilder |
row(int row)
Starting point for the creation of a . |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public final int row
public final int column
Constructor Detail |
---|
protected TableCell(int row, int column)
TableCell
.
row
- the row of the cell.column
- the column of the cell.Method Detail |
---|
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.
public boolean equals(Object obj)
equals
in class Object
public int hashCode()
hashCode
in class Object
public String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |