|
From: <tr...@us...> - 2003-07-16 06:04:31
|
Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline
In directory sc8-pr-cvs1:/tmp/cvs-serv26105/pipeline
Modified Files:
PipelineFactory.java PipelineStageFactory.java
Log Message:
fixed error in SimplePipelineStageFactory where parent method.setOptions was not called in overridden method. This cause options to not ever be set on PipelineStageFactory.
Index: PipelineFactory.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/PipelineFactory.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** PipelineFactory.java 16 Jul 2003 05:46:01 -0000 1.9
--- PipelineFactory.java 16 Jul 2003 06:04:26 -0000 1.10
***************
*** 340,356 ****
/**
* Represents a pairing of a pipeline and a stage within that pipeline.
! *
* <p>
* Title: Babel
* </p>
! *
* <p>
* Description: Universal Document Processor
* </p>
! *
* <p>
* Copyright: Copyright (c) 2002
* </p>
! *
* <p>
* Company:
--- 340,356 ----
/**
* Represents a pairing of a pipeline and a stage within that pipeline.
! *
* <p>
* Title: Babel
* </p>
! *
* <p>
* Description: Universal Document Processor
* </p>
! *
* <p>
* Copyright: Copyright (c) 2002
* </p>
! *
* <p>
* Company:
Index: PipelineStageFactory.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/PipelineStageFactory.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** PipelineStageFactory.java 16 Jul 2003 05:17:39 -0000 1.14
--- PipelineStageFactory.java 16 Jul 2003 06:04:26 -0000 1.15
***************
*** 167,175 ****
* Set the options on this pipeline stage factory
*
! * @param options hashtable options
*
* @throws PipelineException DOCUMENT ME!
*/
! public void setOptions(Map options) throws PipelineException {
this.options = options;
}
--- 167,176 ----
* Set the options on this pipeline stage factory
*
! * @param options map options
*
* @throws PipelineException DOCUMENT ME!
*/
! public void setOptions(Map options)
! throws PipelineException {
this.options = options;
}
|