aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/layout
diff options
context:
space:
mode:
authorSteve Coffman <gears@apache.org>2001-08-06 17:56:35 +0000
committerSteve Coffman <gears@apache.org>2001-08-06 17:56:35 +0000
commit503e563a5bf474c2a046346261273c1d44b98c69 (patch)
tree959256427d2898ec4fa55783de14c5c22b05a859 /src/org/apache/fop/layout
parent8a3bc2543bd1c31e78da3b8fa919e53e4f3dd1ee (diff)
downloadxmlgraphics-fop-503e563a5bf474c2a046346261273c1d44b98c69.tar.gz
xmlgraphics-fop-503e563a5bf474c2a046346261273c1d44b98c69.zip
This just moves the marker supporting code from before Mark's patch into
StreamRenderer. However, I'm not satisfied that it actually works the same. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194398 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/layout')
-rw-r--r--src/org/apache/fop/layout/AreaTree.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/apache/fop/layout/AreaTree.java b/src/org/apache/fop/layout/AreaTree.java
index 0f4d3ea56..85a987b45 100644
--- a/src/org/apache/fop/layout/AreaTree.java
+++ b/src/org/apache/fop/layout/AreaTree.java
@@ -65,12 +65,12 @@ public class AreaTree {
public Page getNextPage(Page current, boolean isWithinPageSequence,
boolean isFirstCall) {
- return current;
+ return streamRenderer.getNextPage(current, isWithinPageSequence,isFirstCall);
}
public Page getPreviousPage(Page current, boolean isWithinPageSequence,
boolean isFirstCall) {
- return current;
+ return streamRenderer.getPreviousPage(current,isWithinPageSequence,isFirstCall);
}
public void addPage(Page page)