diff options
author | Andreas L. Delmelle <adelmelle@apache.org> | 2006-02-12 19:39:29 +0000 |
---|---|---|
committer | Andreas L. Delmelle <adelmelle@apache.org> | 2006-02-12 19:39:29 +0000 |
commit | 26acc4f9a2f86cb0c634add792b122ec547168e9 (patch) | |
tree | 9b309850f0fa97e186afa48bc82f3f0ded660c12 /src | |
parent | c3ec6a4b5a7752fa974cf962f565a93dd69afe10 (diff) | |
download | xmlgraphics-fop-26acc4f9a2f86cb0c634add792b122ec547168e9.tar.gz xmlgraphics-fop-26acc4f9a2f86cb0c634add792b122ec547168e9.zip |
Extra constants needed for the font shorthand
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@377223 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/java/org/apache/fop/fo/Constants.java | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/fo/Constants.java b/src/java/org/apache/fop/fo/Constants.java index db12b5cb8..737d54854 100644 --- a/src/java/org/apache/fop/fo/Constants.java +++ b/src/java/org/apache/fop/fo/Constants.java @@ -1068,6 +1068,18 @@ public interface Constants { int EN_AVOID = 177; /** Enumeration constant -- white-space shorthand */ int EN_PRE = 178; + /** Enumeration constant -- font shorthand */ + int EN_CAPTION = 179; + /** Enumeration constant -- font shorthand */ + int EN_ICON = 180; + /** Enumeration constant -- font shorthand */ + int EN_MENU = 181; + /** Enumeration constant -- font shorthand */ + int EN_MESSAGE_BOX = 182; + /** Enumeration constant -- font shorthand */ + int EN_SMALL_CAPTION = 183; + /** Enumeration constant -- font shorthand */ + int EN_STATUS_BAR = 184; /** Number of enumeration constants defined */ - int ENUM_COUNT = 178; + int ENUM_COUNT = 184; } |