diff options
author | Glen Mazza <gmazza@apache.org> | 2004-01-17 19:29:46 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-01-17 19:29:46 +0000 |
commit | f7ca85ea98ed3f08122a1e4e5aa77d660821de59 (patch) | |
tree | 20c9f551346c247658a744db36b83428542efbf2 /src/java/org/apache/fop/fo/TextInfo.java | |
parent | bb7e90c3a404703f461b45c8b43d8811f3acf62d (diff) | |
download | xmlgraphics-fop-f7ca85ea98ed3f08122a1e4e5aa77d660821de59.tar.gz xmlgraphics-fop-f7ca85ea98ed3f08122a1e4e5aa77d660821de59.zip |
Moved the interfaces into the Constants class on a trial basis (we may still
choose to remove them in favor of strictly using Constants.) Two interfaces
(span and position) were removed because of conflicts with other class names.
The interface generation was moved into Constants.xsl, which is run manually
via the XsltToJava ant task and its output is then checked in. As a result,
no more autogeneration of these interfaces at build time will be done.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197213 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/TextInfo.java')
-rw-r--r-- | src/java/org/apache/fop/fo/TextInfo.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/fo/TextInfo.java b/src/java/org/apache/fop/fo/TextInfo.java index a84ab6c3c..23b7a57d7 100644 --- a/src/java/org/apache/fop/fo/TextInfo.java +++ b/src/java/org/apache/fop/fo/TextInfo.java @@ -54,7 +54,6 @@ package org.apache.fop.fo; import org.apache.fop.fonts.Font; import org.apache.fop.datatypes.ColorType; import org.apache.fop.traits.SpaceVal; -import org.apache.fop.fo.properties.TextTransform; /** * Collection of properties used in @@ -75,7 +74,7 @@ public class TextInfo { /** fo:line-height property */ public int lineHeight; /** fo:text-transform property */ - public int textTransform = TextTransform.NONE; + public int textTransform = Constants.TextTransform.NONE; // Props used for calculating inline-progression-dimension /** fo:word-spacing property */ |