com.jrefinery.report.targets.table.csv
Class CSVCellData

java.lang.Object
  |
  +--com.jrefinery.report.targets.table.TableCellData
        |
        +--com.jrefinery.report.targets.table.csv.CSVCellData

public class CSVCellData
extends TableCellData

The CSV extension of the TableCellData base class. The cell data implementation contains the string value of the element value.

Author:
Thomas Morgner

Constructor Summary
CSVCellData(java.lang.String value, java.awt.geom.Rectangle2D outerBounds)
          Creates a new CSVCellData object.
 
Method Summary
 java.lang.String getValue()
          Gets the value stored in this CSVCellData-object.
 boolean isBackground()
          Returns always false, as this is a data cell.
 
Methods inherited from class com.jrefinery.report.targets.table.TableCellData
getBounds
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CSVCellData

public CSVCellData(java.lang.String value,
                   java.awt.geom.Rectangle2D outerBounds)
Creates a new CSVCellData object.

Parameters:
value - the value of the cell (null not permitted).
outerBounds - the element bounds.
Method Detail

getValue

public java.lang.String getValue()
Gets the value stored in this CSVCellData-object.

Returns:
the value of this cell data object.

isBackground

public boolean isBackground()
Returns always false, as this is a data cell.

Specified by:
isBackground in class TableCellData
Returns:
false, as this is no background cell.