| Method from javax.swing.text.TableView$TableCell Detail: |
public int getColumnCount() {
return 1;
} Deprecated!Gets the number of columns this cell spans (e.g. the
grid width). |
public int getGridColumn() {
return col;
} Deprecated!Gets the column of the grid location |
public int getGridRow() {
return row;
} Deprecated!Gets the row of the grid location |
public int getRowCount() {
return 1;
} Deprecated!Gets the number of rows this cell spans (that is, the
grid height). |
public void setGridLocation(int row,
int col) {
this.row = row;
this.col = col;
} Deprecated! |