Small correction

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352206 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Glen Stampoultzis 2002-03-12 10:39:49 +00:00
parent 6a3ce6a80d
commit db77a6a8dc
1 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ public class FrillsAndFills
// Aqua background
HSSFCellStyle style = wb.createCellStyle();
style.setFillBackgroundColor(HSSFColor.AQUA.index);
style.setFillBackgroundColor(HSSFCellStyle.AQUA);
style.setFillPattern(HSSFCellStyle.BIG_SPOTS);
HSSFCell cell = row.createCell((short) 1);
cell.setCellValue("X");
@ -86,7 +86,7 @@ public class FrillsAndFills
// Orange "foreground", foreground being the fill foreground not the font color.
style = wb.createCellStyle();
style.setFillForegroundColor(HSSFColor.ORANGE.index);
style.setFillForegroundColor(HSSFCellStyle.ORANGE);
style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
cell = row.createCell((short) 2);
cell.setCellValue("X");