/*
* import each cell
*/
private Object importCell(Workbook wb, jxl.Cell cell) throws FormulaException{
CellType type = cell.getType();
if (cell instanceof jxl.biff.FormulaData) {
return new FormulaImpl(getFormula(wb, (jxl.biff.FormulaData)cell));
} else {
//System.out.println("'"+cell.getType()+"'"+cell.getContents()+"'");
if(CellType.DATE.equals(type)){