From: bruce m. <tr...@us...> - 2004-07-30 01:33:13
|
Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/xml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7955/modules/core/src/com/babeldoc/core/pipeline/xml Modified Files: IUnmarshaller.java XmlPipelineStageFactory.java XmlPipelineStageResolver.java Log Message: javadoc and formatting here. Index: IUnmarshaller.java =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/xml/IUnmarshaller.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** IUnmarshaller.java 12 Aug 2003 23:44:44 -0000 1.4 --- IUnmarshaller.java 30 Jul 2004 01:33:04 -0000 1.5 *************** *** 70,74 **** /** ! * Interface that all pipeline stage configuration unmarshallers * * @author bmcdonald --- 70,74 ---- /** ! * Interface that all pipeline stage configuration unmarshallers. * * @author bmcdonald *************** *** 76,83 **** */ public interface IUnmarshaller { public static final String ROOT = "root"; /** ! * Get the array of pipeline stage connections * * @return array of connections. --- 76,84 ---- */ public interface IUnmarshaller { + /** root string. */ public static final String ROOT = "root"; /** ! * Get the array of pipeline stage connections. * * @return array of connections. *************** *** 88,92 **** * Get root configuration object. * ! * @return */ public IConfigData getRootConfig(); --- 89,93 ---- * Get root configuration object. * ! * @return config data */ public IConfigData getRootConfig(); Index: XmlPipelineStageFactory.java =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/xml/XmlPipelineStageFactory.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** XmlPipelineStageFactory.java 27 Aug 2003 03:13:35 -0000 1.8 --- XmlPipelineStageFactory.java 30 Jul 2004 01:33:04 -0000 1.9 *************** *** 90,97 **** extends PipelineStageFactory { ! /** constant: Configuration constants */ public static final String XML_FILENAME = "configFile"; ! /** Keep the configuration information */ private IConfigInfo info; --- 90,97 ---- extends PipelineStageFactory { ! /** constant: Configuration constants. */ public static final String XML_FILENAME = "configFile"; ! /** Keep the configuration information. */ private IConfigInfo info; *************** *** 116,120 **** /** ! * Get the configuration iformation for this class * * @return IConfigInfo object --- 116,120 ---- /** ! * Get the configuration iformation for this class. * * @return IConfigInfo object Index: XmlPipelineStageResolver.java =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/xml/XmlPipelineStageResolver.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** XmlPipelineStageResolver.java 12 Aug 2003 23:44:44 -0000 1.8 --- XmlPipelineStageResolver.java 30 Jul 2004 01:33:04 -0000 1.9 *************** *** 89,98 **** implements IPipelineStageResolver { /** ! * Set up the data for this resolver * ! * @param xmlFile * ! * @throws IOException DOCUMENT ME! ! * @throws RuntimeException DOCUMENT ME! */ public XmlPipelineStageResolver(String xmlFile) throws IOException { --- 89,97 ---- implements IPipelineStageResolver { /** ! * Set up the data for this resolver. * ! * @param xmlFile xml file. * ! * @throws IOException */ public XmlPipelineStageResolver(String xmlFile) throws IOException { *************** *** 113,117 **** * handled. Need to create the stages hashtables too. * ! * @param unmarshaller */ protected void setupConfigData(IUnmarshaller unmarshaller) { --- 112,116 ---- * handled. Need to create the stages hashtables too. * ! * @param unmarshaller marshaller object. */ protected void setupConfigData(IUnmarshaller unmarshaller) { |