diff options
author | Glen Mazza <gmazza@apache.org> | 2004-07-27 23:57:18 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-07-27 23:57:18 +0000 |
commit | 249622789008c4fb8509c6286809f4adbaac654f (patch) | |
tree | c77193a66bf5b6b8957887edee27789a03ed0cb9 /src/java/org/apache/fop/fo/pagination/LayoutMasterSet.java | |
parent | a65925f0dbb1c4fe68887fe9deb9f90ba159dfbd (diff) | |
download | xmlgraphics-fop-249622789008c4fb8509c6286809f4adbaac654f.tar.gz xmlgraphics-fop-249622789008c4fb8509c6286809f4adbaac654f.zip |
Removed the FOTreeVisitor interface in favor of a more
direct connection to (the subclassable) AddLMVisitor
in the FO's.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197845 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/pagination/LayoutMasterSet.java')
-rw-r--r-- | src/java/org/apache/fop/fo/pagination/LayoutMasterSet.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/java/org/apache/fop/fo/pagination/LayoutMasterSet.java b/src/java/org/apache/fop/fo/pagination/LayoutMasterSet.java index 1504c4201..94303e466 100644 --- a/src/java/org/apache/fop/fo/pagination/LayoutMasterSet.java +++ b/src/java/org/apache/fop/fo/pagination/LayoutMasterSet.java @@ -31,7 +31,7 @@ import org.xml.sax.SAXParseException; import org.apache.fop.fo.FONode; import org.apache.fop.fo.FObj; import org.apache.fop.fo.FOElementMapping; -import org.apache.fop.fo.FOTreeVisitor; +import org.apache.fop.layoutmgr.AddLMVisitor; import org.apache.fop.apps.FOPException; /** @@ -217,8 +217,8 @@ public class LayoutMasterSet extends FObj { return false; } - public void acceptVisitor(FOTreeVisitor fotv) { - fotv.serveLayoutMasterSet(this); + public void acceptVisitor(AddLMVisitor aLMV) { + aLMV.serveLayoutMasterSet(this); } public String getName() { |