diff options
author | Glen Mazza <gmazza@apache.org> | 2004-06-15 06:26:56 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-06-15 06:26:56 +0000 |
commit | 39d2edd0962d329ca15a1a99f895ce11262e004f (patch) | |
tree | e9f977dd16ed1f05f9310ad8dbc9573f32818a0a /src/java/org/apache/fop/fo/FOTreeHandler.java | |
parent | c9f1a6f52eb0d88bb0dfefdd2f7119fb7afb2626 (diff) | |
download | xmlgraphics-fop-39d2edd0962d329ca15a1a99f895ce11262e004f.tar.gz xmlgraphics-fop-39d2edd0962d329ca15a1a99f895ce11262e004f.zip |
1.) Added restriction to fo:declarations that fo:color-profile is the only XSL namespace child element allowed.
2.) Switched from fo.FOTreeControl to apps.Document throughout app, to better clarify that it is the apps.Document object being accessed/used.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197716 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/FOTreeHandler.java')
-rw-r--r-- | src/java/org/apache/fop/fo/FOTreeHandler.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/fo/FOTreeHandler.java b/src/java/org/apache/fop/fo/FOTreeHandler.java index 4dec73881..2082bcb35 100644 --- a/src/java/org/apache/fop/fo/FOTreeHandler.java +++ b/src/java/org/apache/fop/fo/FOTreeHandler.java @@ -98,7 +98,7 @@ public class FOTreeHandler extends FOInputHandler { /** * Main constructor - * @param foTreeControl the FOTreeControl implementation that governs this + * @param document the apps.Document implementation that governs this * FO Tree * @param store if true then use the store pages model and keep the * area tree in memory @@ -478,7 +478,7 @@ public class FOTreeHandler extends FOInputHandler { * * @return the font information */ - public FOTreeControl getFontInfo() { + public Document getFontInfo() { return doc; } |