Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline
In directory sc8-pr-cvs1:/tmp/cvs-serv31207/modules/core/src/com/babeldoc/core/pipeline
Modified Files:
PipelineFactory.java PipelineStage.java
PipelineStageFactoryType.java PipelineStageInfo.java
Log Message:
updated the commons-lang component. going through all the TODOs and remediating the issues.
Index: PipelineFactory.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/PipelineFactory.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** PipelineFactory.java 27 Aug 2003 03:13:35 -0000 1.12
--- PipelineFactory.java 16 Sep 2003 05:19:00 -0000 1.13
***************
*** 374,380 ****
/**
! * TODO: DOCUMENT ME!
! *
! * @return DOCUMENT ME!
*/
public String getPipeline() {
--- 374,378 ----
/**
! * @return get the pipeline
*/
public String getPipeline() {
***************
*** 383,389 ****
/**
! * TODO: DOCUMENT ME!
! *
! * @return DOCUMENT ME!
*/
public String getStage() {
--- 381,385 ----
/**
! * @return Get the stage
*/
public String getStage() {
Index: PipelineStage.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/PipelineStage.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** PipelineStage.java 3 Sep 2003 03:25:31 -0000 1.20
--- PipelineStage.java 16 Sep 2003 05:19:00 -0000 1.21
***************
*** 542,550 ****
/**
! * TODO: DOCUMENT ME!
*
! * @return DOCUMENT ME!
*
! * @throws PipelineException DOCUMENT ME!
*/
public abstract PipelineStageResult[] process() throws PipelineException;
--- 542,551 ----
/**
! * Do the hard work and then return each of the pipeline stage results. This really
! * is the heart of what each pipeline stage must do.
*
! * @return array of pipeline stage results.
*
! * @throws PipelineException for any processing issues
*/
public abstract PipelineStageResult[] process() throws PipelineException;
***************
*** 834,839 ****
/**
* Get error handler defined specified for this stage. If no handler provided
! * or wrong class name set, then use default one. TODO: Should we throw
! * Exception to indicate that configuration is wrong?
*
* @return
--- 835,841 ----
/**
* Get error handler defined specified for this stage. If no handler provided
! * or wrong class name set, then use default one.
! *
! * TODO: Should we throw Exception to indicate that configuration is wrong?
*
* @return
Index: PipelineStageFactoryType.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/PipelineStageFactoryType.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** PipelineStageFactoryType.java 27 Jun 2003 02:19:58 -0000 1.3
--- PipelineStageFactoryType.java 16 Sep 2003 05:19:01 -0000 1.4
***************
*** 103,109 ****
/**
! * TODO: DOCUMENT ME!
! *
! * @return DOCUMENT ME!
*/
public String getServicePrefix() {
--- 103,107 ----
/**
! * @return Get the pipeline stage factory service prefix.
*/
public String getServicePrefix() {
Index: PipelineStageInfo.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/PipelineStageInfo.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** PipelineStageInfo.java 12 Aug 2003 23:44:44 -0000 1.8
--- PipelineStageInfo.java 16 Sep 2003 05:19:01 -0000 1.9
***************
*** 123,127 ****
/**
! * TODO: Add complex type handling here. //add suboption if exists if
* (option.isComplex()) { System.out.println("Option " +
* option.getName() + " complex.. Addind suboption "
--- 123,128 ----
/**
! * TODO: Add complex type handling here.
! * //add suboption if exists if
* (option.isComplex()) { System.out.println("Option " +
* option.getName() + " complex.. Addind suboption "
|