pbwest 2002/11/11 08:54:08
Modified: src/org/apache/fop/fo Tag: FOP_0-20-0_Alt-Design FOTree.java
Log:
Made xmlevents protected. Added getXmlevents() function.
Revision Changes Path
No revision
No revision
1.1.2.24 +12 -4 xml-fop/src/org/apache/fop/fo/Attic/FOTree.java
Index: FOTree.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/Attic/FOTree.java,v
retrieving revision 1.1.2.23
retrieving revision 1.1.2.24
diff -u -r1.1.2.23 -r1.1.2.24
--- FOTree.java 2 Nov 2002 01:54:57 -0000 1.1.2.23
+++ FOTree.java 11 Nov 2002 16:54:08 -0000 1.1.2.24
@@ -51,7 +51,7 @@
* The buffer from which the <tt>XMLEvent</tt>s from the parser will
* be read. <tt>protected</tt> so that FONode can access it.
*/
- SyncedFoXmlEventsBuffer xmlevents;
+ protected SyncedFoXmlEventsBuffer xmlevents;
private Thread parserThread;
private boolean errorDump;
@@ -61,7 +61,6 @@
*/
protected PropertyParser exprParser;
-
/**
* @param xmlevents the buffer from which <tt>XMLEvent</tt>s from the
* parser are read.
@@ -105,6 +104,15 @@
*/
public void setParserThread(Thread parserThread) {
this.parserThread = parserThread;
+ }
+
+ /**
+ * Get the <i>xmlevents</i> buffer through which descendents can access
+ * parser events.
+ * @return <i>xmlevents</i>.
+ */
+ public SyncedFoXmlEventsBuffer getXmlevents() {
+ return xmlevents;
}
/**
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]