Uses of Class
com.arctorus.documents.table.Cell

Packages that use Cell
com.arctorus.documents.table   
 

Uses of Cell in com.arctorus.documents.table
 

Subclasses of Cell in com.arctorus.documents.table
 class MergedCell
          Represents merged cell.
 

Fields in com.arctorus.documents.table declared as Cell
static Cell Cell.NULL
          NULL cell.
 

Methods in com.arctorus.documents.table that return Cell
 Cell Table.getCell(int columnIndex, int rowIndex)
          Get cell by column and row indexes.
 Cell Table.getCell(java.lang.String cellName)
          Get cell by name.
 Cell Table.getCellRef(int columnIndex, int rowIndex)
          Get cell by column and row index.
 Cell[] Row.getCells()
          Get array of cells in the row.
 Cell MergedCell.getEndCell()
          Get last cell of the merged cell.
 Cell MergedCell.getStartCell()
          Get first cell of the merged cell.
 

Methods in com.arctorus.documents.table with parameters of type Cell
 boolean Cell.equalContent(Cell cell)
          Indicates whether the content of the specified cell (style, borders and text) is "equal to" the content of this cell.
 

Constructors in com.arctorus.documents.table with parameters of type Cell
MergedCell(Cell startCell, Cell endCell)
          Create new merged cell by merging all cells between startCell and endCell.