aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org
diff options
context:
space:
mode:
authorFinn Bock <bckfnn@apache.org>2004-09-07 14:33:01 +0000
committerFinn Bock <bckfnn@apache.org>2004-09-07 14:33:01 +0000
commitcae9284a60979c7de6761228a71ed01020886ccc (patch)
tree6274aa2f123a941a5c1f811862f1e49454196b2d /src/java/org
parentf7be6b1dc86c89260923f7e3e94e714664104568 (diff)
downloadxmlgraphics-fop-cae9284a60979c7de6761228a71ed01020886ccc.tar.gz
xmlgraphics-fop-cae9284a60979c7de6761228a71ed01020886ccc.zip
Added line-stacking-strategy enums.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197929 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org')
-rw-r--r--src/java/org/apache/fop/fo/Constants.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/fo/Constants.java b/src/java/org/apache/fop/fo/Constants.java
index bca6aa506..710174b1b 100644
--- a/src/java/org/apache/fop/fo/Constants.java
+++ b/src/java/org/apache/fop/fo/Constants.java
@@ -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;