*
* @throws IOException If any I/O error occurs.
*/
public void addCell(int row, int column, Format fmt, String cellContents) throws IOException {
CellAttributes ca = new CellAttributes(getFormat(fmt),
fmt.getForeground(),
fmt.getBackground());
if (cellContents.startsWith("=")) {
cellContents = parseFormula(cellContents);
Debug.log(Debug.INFO, "YAHOO Found Formula" + cellContents);