org.jfree.workbook
Class ValueCell

java.lang.Object
  |
  +--org.jfree.workbook.Cell
        |
        +--org.jfree.workbook.ValueCell
All Implemented Interfaces:
CellConstants, java.lang.Comparable

public class ValueCell
extends Cell

A cell that contains a value.


Field Summary
 
Fields inherited from class org.jfree.workbook.Cell
column, content, row, type, valueFormat
 
Fields inherited from interface org.jfree.workbook.CellConstants
DATE_TYPE, EXPRESSION_TYPE, LABEL_TYPE, VALUE_TYPE
 
Constructor Summary
ValueCell(double value, int row, int column)
          Standard constructor.
 
Methods inherited from class org.jfree.workbook.Cell
compareTo, getColumn, getContent, getRow, getSerialNumber, getType
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ValueCell

public ValueCell(double value,
                 int row,
                 int column)
Standard constructor.

Parameters:
value - The value contained in the cell.
column - The column (0 <= column < Worksheet.MAX_COLUMNS).
row - The row (0 <= row < Worksheet.MAX_ROWS).