]> source.dussan.org Git - poi.git/commitdiff
fix compilation error
authorSergey Vladimirov <sergey@apache.org>
Mon, 18 Jul 2011 19:51:08 +0000 (19:51 +0000)
committerSergey Vladimirov <sergey@apache.org>
Mon, 18 Jul 2011 19:51:08 +0000 (19:51 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1148024 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hssf/converter/ExcelToHtmlUtils.java

index 4d64e5fcfee33104cd02ba46b487672b4d2996a0..4be80b97f6cee2d6809f148e354b979ef2351f82 100644 (file)
@@ -32,6 +32,33 @@ public class ExcelToHtmlUtils
     private static final short EXCEL_COLUMN_WIDTH_FACTOR = 256;
     private static final int UNIT_OFFSET_LENGTH = 7;
 
+    public static void appendAlign( StringBuilder style, short alignment )
+    {
+        switch ( alignment )
+        {
+        case HSSFCellStyle.ALIGN_CENTER:
+            style.append( "text-align: center; " );
+            break;
+        case HSSFCellStyle.ALIGN_CENTER_SELECTION:
+            style.append( "text-align: center; " );
+            break;
+        case HSSFCellStyle.ALIGN_FILL:
+            // XXX: shall we support fill?
+            break;
+        case HSSFCellStyle.ALIGN_GENERAL:
+            break;
+        case HSSFCellStyle.ALIGN_JUSTIFY:
+            style.append( "text-align: justify; " );
+            break;
+        case HSSFCellStyle.ALIGN_LEFT:
+            style.append( "text-align: left; " );
+            break;
+        case HSSFCellStyle.ALIGN_RIGHT:
+            style.append( "text-align: right; " );
+            break;
+        }
+    }
+
     public static String getBorderStyle( short xlsBorder )
     {
         final String borderStyle;