git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352146
13f79535-47bb-0310-9956-
ffa450edef68
* <p>
* For example:
* <pre>
- * cs.setFillPattern( (short) 1 );
- * cs.setFillBackgroundColor(HSSFColor.RED.index);
+ * cs.setFillPattern(HSSFCellStyle.FINE_DOTS );
+ * cs.setFillBackgroundColor(HSSFCellStyle.RED);
+ * </pre>
+ * or, for the special case of SOLID_FILL:
+ * <pre>
+ * cs.setFillPattern(HSSFCellStyle.SOLID_FILL );
+ * cs.setFillForgroundColor(HSSFSeCellStyle.RED);
* </pre>
* You will need to set the fill style first.
*