From 1e034f976255cae429a29734970061cdb5cfbaca Mon Sep 17 00:00:00 2001 From: Peter Bernard West Date: Sun, 30 May 2004 16:53:02 +0000 Subject: [PATCH] Changed FONode to FoPageSequence in signature. Changed myContext to layoutContext. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197678 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/fop/fo/FOPageSeqNode.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/java/org/apache/fop/fo/FOPageSeqNode.java b/src/java/org/apache/fop/fo/FOPageSeqNode.java index 9599040ad..2ab48684d 100644 --- a/src/java/org/apache/fop/fo/FOPageSeqNode.java +++ b/src/java/org/apache/fop/fo/FOPageSeqNode.java @@ -56,7 +56,7 @@ public class FOPageSeqNode extends FONode { * Comment for childContext */ protected Area currentArea = null; - protected Area myContext = null; + protected Area layoutContext = null; protected ArrayList generated = null; /** Decorations applicable to generated text. See 7.16.4 "text-decoration" * in the Recommendation.*/ @@ -92,7 +92,7 @@ public class FOPageSeqNode extends FONode { public FOPageSeqNode( FOTree foTree, int type, - FONode pageSequence, + FoPageSequence pageSequence, FONode parent, XmlEvent event, int stateFlags, @@ -112,8 +112,9 @@ public class FOPageSeqNode extends FONode { "FOPageSeqNode constructor expects FoPageSequence; got " + nodeType()); } - this.pageSequence = (FoPageSequence)pageSequence; + this.pageSequence = pageSequence; decorations = processDecorations(); + layoutContext = getLayoutContext(); } @@ -142,7 +143,7 @@ public class FOPageSeqNode extends FONode { public FOPageSeqNode( FOTree foTree, int type, - FONode pageSequence, + FoPageSequence pageSequence, XmlEvent event, int stateFlags, int[] sparsePropsMap, -- 2.39.5