From 4c56038f69640db1f3afb96a966d58e9c273b3cf Mon Sep 17 00:00:00 2001 From: "Andreas L. Delmelle" Date: Fri, 30 Dec 2005 00:14:21 +0000 Subject: [PATCH] Added a few missing constants... git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@359938 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/fop/fo/Constants.java | 36 +++++++++++++---------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/src/java/org/apache/fop/fo/Constants.java b/src/java/org/apache/fop/fo/Constants.java index a6d183ecf..c751d11aa 100644 --- a/src/java/org/apache/fop/fo/Constants.java +++ b/src/java/org/apache/fop/fo/Constants.java @@ -661,33 +661,35 @@ public interface Constants { /** Property constant */ int PR_VOLUME = 237; /** Property constant */ - int PR_WHITE_SPACE_COLLAPSE = 238; + int PR_WHITE_SPACE = 238; /** Property constant */ - int PR_WHITE_SPACE_TREATMENT = 239; + int PR_WHITE_SPACE_COLLAPSE = 239; /** Property constant */ - int PR_WIDOWS = 240; + int PR_WHITE_SPACE_TREATMENT = 240; /** Property constant */ - int PR_WIDTH = 241; + int PR_WIDOWS = 241; /** Property constant */ - int PR_WORD_SPACING = 242; + int PR_WIDTH = 242; /** Property constant */ - int PR_WRAP_OPTION = 243; + int PR_WORD_SPACING = 243; /** Property constant */ - int PR_WRITING_MODE = 244; + int PR_WRAP_OPTION = 244; /** Property constant */ - int PR_XML_LANG = 245; + int PR_WRITING_MODE = 245; /** Property constant */ - int PR_Z_INDEX = 246; + int PR_XML_LANG = 246; /** Property constant */ - int PR_INTRUSION_DISPLACE = 247; + int PR_Z_INDEX = 247; + /** Property constant */ + int PR_INTRUSION_DISPLACE = 248; /** Property constant - XSL 1.1 */ - int PR_INDEX_CLASS = 248; + int PR_INDEX_CLASS = 249; /** Property constant - XSL 1.1 */ - int PR_INDEX_KEY = 249; + int PR_INDEX_KEY = 250; /** Property constant - Custom extension */ - int PR_X_BLOCK_PROGRESSION_UNIT = 250; + int PR_X_BLOCK_PROGRESSION_UNIT = 251; /** Number of property constants defined */ - int PROPERTY_COUNT = 250; + int PROPERTY_COUNT = 251; // compound property constants @@ -1069,6 +1071,10 @@ public interface Constants { int EN_800 = 175; /** Enumeration constant */ int EN_900 = 176; + /** Enumeration constant -- page-break-shorthand */ + int EN_AVOID = 177; + /** Enumeration constant -- white-space shorthand */ + int EN_PRE = 178; /** Number of enumeration constants defined */ - int ENUM_COUNT = 176; + int ENUM_COUNT = 178; } -- 2.39.5