pbwest 2004/05/08 06:07:17
Modified: src/java/org/apache/fop/fo Tag: FOP_0-20-0_Alt-Design
FOPageSeqNode.java
Log:
childContext and myCOntext fields added.
getReferenceRectangle() added
Revision Changes Path
No revision
No revision
1.1.2.2 +13 -5 xml-fop/src/java/org/apache/fop/fo/Attic/FOPageSeqNode.java
Index: FOPageSeqNode.java
===================================================================
RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/Attic/FOPageSeqNode.java,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -r1.1.2.1 -r1.1.2.2
--- FOPageSeqNode.java 2 Feb 2004 02:01:43 -0000 1.1.2.1
+++ FOPageSeqNode.java 8 May 2004 13:07:17 -0000 1.1.2.2
@@ -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 @@
*/
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 @@
}
return numMarkers;
}
-
+
+ public Area getReferenceRectangle() throws FOPException {
+ throw new FOPException("Called from FOPageSeqNode");
+ }
+
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]