* @param name Name of the Pocket Excel Data file. (excluding the file
* extension)
*/
public Workbook(String name) throws IOException {
fileName = name + PocketExcelConstants.FILE_EXTENSION;
Format defaultFormat = new Format();
FontDescription fd = new FontDescription(defaultFormat);
fonts.add(fd);
ExtendedFormat xf = new ExtendedFormat(0, defaultFormat);
extendedFormats.add(xf);
}