Fixed a small error in documentation

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353077 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Glen Stampoultzis 2003-05-01 23:38:39 +00:00
parent aa21d449fd
commit 2e6a5e2048
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@
// create a new cell style from the workbook otherwise you can end up // create a new cell style from the workbook otherwise you can end up
// modifying the built in style and effecting not only this cell but other cells. // modifying the built in style and effecting not only this cell but other cells.
HSSFCellStyle cellStyle = wb.createCellStyle(); HSSFCellStyle cellStyle = wb.createCellStyle();
cellStyle.setDataFormat(HSSFDataFormat.getFormat("m/d/yy h:mm")); cellStyle.setDataFormat(HSSFDataFormat.getBuiltinFormat("m/d/yy h:mm"));
cell = row.createCell((short)1); cell = row.createCell((short)1);
cell.setCellValue(new Date()); cell.setCellValue(new Date());
cell.setCellStyle(cellStyle); cell.setCellStyle(cellStyle);

View File

@ -96,7 +96,7 @@
// create a new cell style from the workbook otherwise you can end up // create a new cell style from the workbook otherwise you can end up
// modifying the built in style and effecting not only this cell but other cells. // modifying the built in style and effecting not only this cell but other cells.
HSSFCellStyle cellStyle = wb.createCellStyle(); HSSFCellStyle cellStyle = wb.createCellStyle();
cellStyle.setDataFormat(HSSFDataFormat.getFormat("m/d/yy h:mm")); cellStyle.setDataFormat(HSSFDataFormat.getBuiltinFormat("m/d/yy h:mm"));
cell = row.createCell((short)1); cell = row.createCell((short)1);
cell.setCellValue(new Date()); cell.setCellValue(new Date());
cell.setCellStyle(cellStyle); cell.setCellStyle(cellStyle);