}
public JRBaseCellContents getCell(JRCellContents cell)
{
JRBaseCellContents baseCell = null;
if (cell != null)
{
baseCell = (JRBaseCellContents)get(cell);
if (baseCell == null)
{
baseCell = new JRBaseCellContents(cell, this);
}
}
return baseCell;
}