]> source.dussan.org Git - poi.git/commitdiff
rearrange BORDER_DOTTED and BORDER_HAIR
authorJaven O'Neal <onealj@apache.org>
Mon, 4 Apr 2016 23:26:44 +0000 (23:26 +0000)
committerJaven O'Neal <onealj@apache.org>
Mon, 4 Apr 2016 23:26:44 +0000 (23:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1737751 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/ss/usermodel/CellStyle.java

index e91d19d0f3f52d2b4703e65e1fe027f413b1c34a..644e813407ced39f8078df6a900ca598da9fffd3 100644 (file)
@@ -113,7 +113,7 @@ public interface CellStyle {
      * dot border
      */
 
-    short BORDER_HAIR = 0x7;
+    short BORDER_DOTTED = 0x4;
 
     /**
      * Thick border
@@ -131,7 +131,7 @@ public interface CellStyle {
      * hair-line border
      */
 
-    short BORDER_DOTTED = 0x4;
+    short BORDER_HAIR = 0x7;
 
     /**
      * Medium dashed border
@@ -722,4 +722,4 @@ public interface CellStyle {
      *  it to fit if this text is too long?
      */
     public boolean getShrinkToFit();
-}
\ No newline at end of file
+}