All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jclass.table.JCCellPosition

java.lang.Object
   |
   +----jclass.table.JCCellPosition

public class JCCellPosition
extends Object
implements Serializable
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


Variable Index

 o column
Column number, starting at 0
 o row
Row number, starting at 0

Constructor Index

 o JCCellPosition()
 o JCCellPosition(int, int)

Method Index

 o equals(int, int)
 o equals(JCCellPosition)
 o reshape(int, int)

Variables

 o row
 public int row
Row number, starting at 0

 o column
 public int column
Column number, starting at 0

Constructors

 o JCCellPosition
 public JCCellPosition()
 o JCCellPosition
 public JCCellPosition(int r,
                       int c)

Methods

 o equals
 public boolean equals(JCCellPosition p)
 o equals
 public boolean equals(int r,
                       int c)
 o reshape
 public void reshape(int r,
                     int c)

All Packages  Class Hierarchy  This Package  Previous  Next  Index