Hello out there,

i'm not sure this hits the right place. if thats the case please give an 
advice where to post instead.

while using the poi library for some time now i had to play around with excel 
cell styles, mainly the bgcolor attributes. so i realized that there are two 
constants missing: the lesser and least dotted styles. i added them to class 
HSSFCellStyle. someone should check the wording of the constant names.

please take this as a kind of test for further commitments to this project. 
any advice to meet common commitment rules is appreciated.

and last but not least ... the patch file:

thanks for your outstanding work
andreas engel, germany 
mail AT a-engel.de
? styleenhancement.patch
Index: src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java
===================================================================
RCS file: /home/cvspublic/jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java,v
retrieving revision 1.15
diff -u -r1.15 HSSFCellStyle.java
--- src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java	23 Aug 2004 08:52:42 -0000	1.15
+++ src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java	18 May 2005 17:38:56 -0000
@@ -221,6 +221,10 @@
     public final static short     SQUARES             = 15 ;
     /**  Diamonds */
     public final static short     DIAMONDS            = 16 ;
+    /**  Less Dots */
+    public final static short     LESS_DOTS           = 17 ;
+    /**  Least Dots */
+    public final static short     LEAST_DOTS          = 18 ;
 
 
     /** Creates new HSSFCellStyle why would you want to do this?? */

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:    http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/

Reply via email to