aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/pagination/LayoutMasterSet.java
diff options
context:
space:
mode:
authorGlen Mazza <gmazza@apache.org>2004-07-27 23:57:18 +0000
committerGlen Mazza <gmazza@apache.org>2004-07-27 23:57:18 +0000
commit249622789008c4fb8509c6286809f4adbaac654f (patch)
treec77193a66bf5b6b8957887edee27789a03ed0cb9 /src/java/org/apache/fop/fo/pagination/LayoutMasterSet.java
parenta65925f0dbb1c4fe68887fe9deb9f90ba159dfbd (diff)
downloadxmlgraphics-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.java6
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() {