All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----jclass.table.JCCellPosition
JCCellPosition is used to set the attributes or values of a cell, label or range. The following special row/column values specify other parts of the table:
ALL all cells and labels in a row or column LABEL a row or column label ALLCELLS all cells (but not labels) in a row or column
If both row and column are set to ALL, the entire table is specified (all rows, columns, and labels). The following are some examples of usage:
1 2 cell (1, 2) ALL 1 all cells and the label of column 1 2 ALL all cells and the label of row 2 ALL LABEL all row labels
public int row
public int column
public JCCellPosition()
public JCCellPosition(int r, int c)
public boolean equals(JCCellPosition p)
public boolean equals(int r, int c)
public void reshape(int r, int c)
All Packages Class Hierarchy This Package Previous Next Index