]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Added line-stacking-strategy enums.
authorFinn Bock <bckfnn@apache.org>
Tue, 7 Sep 2004 14:33:01 +0000 (14:33 +0000)
committerFinn Bock <bckfnn@apache.org>
Tue, 7 Sep 2004 14:33:01 +0000 (14:33 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197929 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/Constants.java

index bca6aa50649ae78653d84e5130555661cbb9b474..710174b1b2a02ef5bde68b343dc5c99a01c0a428 100644 (file)
@@ -494,7 +494,10 @@ public interface Constants {
     int USECONTENT = 104;
     int VISIBLE = 105;
     int WRAP = 106;
-    int ENUM_COUNT = 106;
+    int FONT_HEIGHT = 107;
+    int LINE_HEIGHT = 108;
+    int MAX_HEIGHT = 109;
+    int ENUM_COUNT = 109;
 
    // Enumeration Interfaces
    
@@ -677,6 +680,12 @@ public interface Constants {
         int TREAT_AS_SPACE = Constants.TREAT_AS_SPACE;
         int TREAT_AS_ZERO_WIDTH_SPACE = Constants.TREAT_AS_ZERO_WIDTH_SPACE; }
 
+    public interface LineStackingStrategy {
+        int LINE_HEIGHT = Constants.LINE_HEIGHT;
+        int FONT_HEIGHT = Constants.FONT_HEIGHT;
+        int MAX_HEIGHT = Constants.MAX_HEIGHT;
+    }
+
     public interface OddOrEven {
         int ODD = Constants.ODD;
         int EVEN = Constants.EVEN;