diff options
author | Finn Bock <bckfnn@apache.org> | 2005-09-12 08:05:59 +0000 |
---|---|---|
committer | Finn Bock <bckfnn@apache.org> | 2005-09-12 08:05:59 +0000 |
commit | a1c7c4a1a07a266b9be7bf0feb9e33c79bc56d0e (patch) | |
tree | 0eee65f724ef9ac4e8de336419c1ba8dc6fc4655 /src/java/org/apache/fop/fo/Constants.java | |
parent | 2ed5293a408b38cb2ed1dcbd2ecdcd7fe99c4943 (diff) | |
download | xmlgraphics-fop-a1c7c4a1a07a266b9be7bf0feb9e33c79bc56d0e.tar.gz xmlgraphics-fop-a1c7c4a1a07a266b9be7bf0feb9e33c79bc56d0e.zip |
Bugzilla #36068:
Validation added for font-style and font-weight by making both properties
enums.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@280286 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/Constants.java')
-rw-r--r-- | src/java/org/apache/fop/fo/Constants.java | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/fo/Constants.java b/src/java/org/apache/fop/fo/Constants.java index a7674100f..68f1c3f02 100644 --- a/src/java/org/apache/fop/fo/Constants.java +++ b/src/java/org/apache/fop/fo/Constants.java @@ -1070,6 +1070,34 @@ public interface Constants { int EN_X_FILL = 162; /** Enumeration constant - non-standard for display-align */ int EN_X_DISTRIBUTE = 163; + /** Enumeration constant */ + int EN_ITALIC = 164; + /** Enumeration constant */ + int EN_OBLIQUE = 165; + /** Enumeration constant */ + int EN_BACKSLANT = 166; + /** Enumeration constant */ + int EN_BOLDER = 167; + /** Enumeration constant */ + int EN_LIGHTER = 168; + /** Enumeration constant */ + int EN_100 = 168; + /** Enumeration constant */ + int EN_200 = 169; + /** Enumeration constant */ + int EN_300 = 170; + /** Enumeration constant */ + int EN_400 = 171; + /** Enumeration constant */ + int EN_500 = 172; + /** Enumeration constant */ + int EN_600 = 173; + /** Enumeration constant */ + int EN_700 = 174; + /** Enumeration constant */ + int EN_800 = 175; + /** Enumeration constant */ + int EN_900 = 176; /** Number of enumeration constants defined */ - int ENUM_COUNT = 163; + int ENUM_COUNT = 176; } |