]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
childContext and myCOntext fields added.
authorPeter Bernard West <pbwest@apache.org>
Sat, 8 May 2004 13:07:17 +0000 (13:07 +0000)
committerPeter Bernard West <pbwest@apache.org>
Sat, 8 May 2004 13:07:17 +0000 (13:07 +0000)
getReferenceRectangle() added

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197570 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/FOPageSeqNode.java

index f2319988cdc652b923d85564f1081dbf367b0551..c322a8ec9193cb8476af3c2030ea890756005989 100644 (file)
@@ -20,6 +20,7 @@
 package org.apache.fop.fo;
 
 import org.apache.fop.apps.FOPException;
+import org.apache.fop.area.Area;
 import org.apache.fop.datastructs.TreeException;
 import org.apache.fop.fo.expr.PropertyException;
 import org.apache.fop.fo.flow.FoMarker;
@@ -32,10 +33,13 @@ import org.apache.fop.xml.XmlEvent;
  */
 public class FOPageSeqNode extends FONode {
 
+    /** The <code>FoPageSequence</code> ancestor of this node. */
+    protected final FONode pageSequence;
     /**
-     * The <code>FoPageSequence</code> ancestor of this node.
+     * Comment for <code>childContext</code>
      */
-    protected final FONode pageSequence;
+    private Area childContext = null;
+    private Area myContext = null;
     
     /**
      * @param foTree the FO tree to which this node is added
@@ -150,5 +154,9 @@ public class FOPageSeqNode extends FONode {
         }
         return numMarkers;
     }
-    
+
+    public Area getReferenceRectangle() throws FOPException {
+        throw new FOPException("Called from FOPageSeqNode");
+    }
+
 }