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;
*/
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
}
return numMarkers;
}
-
+
+ public Area getReferenceRectangle() throws FOPException {
+ throw new FOPException("Called from FOPageSeqNode");
+ }
+
}