pbwest 2004/04/15 04:29:58 Modified: src/java/org/apache/fop/xml Tag: FOP_0-20-0_Alt-Design FoXmlSerialHandler.java Log: Added setRenderThread() Revision Changes Path No revision No revision 1.1.2.9 +17 -3 xml-fop/src/java/org/apache/fop/xml/Attic/FoXmlSerialHandler.java Index: FoXmlSerialHandler.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/xml/Attic/FoXmlSerialHandler.java,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -r1.1.2.8 -r1.1.2.9 --- FoXmlSerialHandler.java 8 Mar 2004 12:42:22 -0000 1.1.2.8 +++ FoXmlSerialHandler.java 15 Apr 2004 11:29:58 -0000 1.1.2.9 @@ -54,6 +54,7 @@ private Namespaces namespaces; private InputSource source; private Thread foThread; + private Thread renderThread; protected Logger log = Logger.getLogger(Fop.fopPackage); private boolean errorDump; @@ -76,10 +77,23 @@ } } + /** + * Allow the thread starter process to notify the serial handler of + * the FO Tree building thread. + * @param foThread + */ public void setFoThread(Thread foThread) { this.foThread = foThread; } + /** + * Allow the thread starter process to notify the serial handler of + * the rendering thread. + * @param renderThread + */ + public void setRenderThread(Thread renderThread) { + this.renderThread = renderThread; + } /** * This is the run method for the callback parser thread. */
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]