]> source.dussan.org Git - poi.git/commitdiff
Minor javadoc update
authorJason Height <jheight@apache.org>
Tue, 23 Aug 2005 03:44:59 +0000 (03:44 +0000)
committerJason Height <jheight@apache.org>
Tue, 23 Aug 2005 03:44:59 +0000 (03:44 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353772 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java

index 530b8571838a7c57a73494ab09766d23fd7cc092..73616f5599543937753e7ef32afa4befe79e8756 100644 (file)
@@ -806,12 +806,12 @@ public class HSSFCellStyle
      * For example:
      * <pre>
      * cs.setFillPattern(HSSFCellStyle.FINE_DOTS );
-     * cs.setFillBackgroundColor(HSSFCellStyle.RED);
+     * cs.setFillBackgroundColor(new HSSFColor.RED().getIndex());
      * </pre>
      * or, for the special case of SOLID_FILL:
      * <pre>
-     * cs.setFillPattern(HSSFCellStyle.SOLID_FILL );
-     * cs.setFillForgroundColor(HSSFSeCellStyle.RED);
+     * cs.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND );
+     * cs.setFillForegroundColor(new HSSFColor.RED().getIndex());
      * </pre>
      * It is necessary to set the fill style in order
      * for the color to be shown in the cell.