From: bruce m. <tr...@us...> - 2004-07-30 01:33:40
|
Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/module In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7955/modules/core/src/com/babeldoc/core/module Modified Files: BabeldocModuleCommand.java BabeldocModuleList.java CoreModule.java Log Message: javadoc and formatting here. Index: CoreModule.java =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/module/CoreModule.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CoreModule.java 29 Aug 2003 02:03:22 -0000 1.3 --- CoreModule.java 30 Jul 2004 01:33:01 -0000 1.4 *************** *** 78,85 **** public class CoreModule extends BabeldocModule { public static final String CORE_MODULE_NAME = "core"; /** ! * Return the names of the those objects that this module is dependant on * * @return Module name --- 78,86 ---- public class CoreModule extends BabeldocModule { + /** name of the core module. */ public static final String CORE_MODULE_NAME = "core"; /** ! * Return the names of the those objects that this module is dependant on. * * @return Module name *************** *** 90,94 **** /** ! * Get the name of this module * * @return Module name --- 91,95 ---- /** ! * Get the name of this module. * * @return Module name Index: BabeldocModuleList.java =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/module/BabeldocModuleList.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** BabeldocModuleList.java 23 Jul 2004 22:32:37 -0000 1.6 --- BabeldocModuleList.java 30 Jul 2004 01:33:01 -0000 1.7 *************** *** 87,97 **** private static final String VISITED = "VISITED"; ! /** Instance variable */ private static BabeldocModuleList instance = null; private BabeldocModule[] modules = null; private Map map = new HashMap(); /** ! * Private constructore */ private BabeldocModuleList() { --- 87,98 ---- private static final String VISITED = "VISITED"; ! /** Instance variable. */ private static BabeldocModuleList instance = null; + /** array of babeldoc modules. */ private BabeldocModule[] modules = null; private Map map = new HashMap(); /** ! * Private constructor. */ private BabeldocModuleList() { *************** *** 113,117 **** /** ! * Get the module with the name, aModule * * @param aModule module name --- 114,118 ---- /** ! * Get the module with the name, aModule. * * @param aModule module name *************** *** 192,201 **** /** ! * Sort the nodes from the root node. This is a topographical sort * ! * @param root ! * @param state ! * @param visiting ! * @param ret */ private final void treeSort(String root, Map state, Stack visiting, --- 193,202 ---- /** ! * Sort the nodes from the root node. This is a topographical sort. * ! * @param root root ! * @param state state ! * @param visiting visiting ! * @param ret collection */ private final void treeSort(String root, Map state, Stack visiting, Index: BabeldocModuleCommand.java =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/module/BabeldocModuleCommand.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** BabeldocModuleCommand.java 29 Aug 2003 02:03:22 -0000 1.16 --- BabeldocModuleCommand.java 30 Jul 2004 01:33:01 -0000 1.17 *************** *** 78,90 **** /** * Command class to access and browse the babeldoc modules from the command ! * line * * @author bmcdonald ! * @version */ public class BabeldocModuleCommand extends BabeldocCommand { /** ! * Setup the babeldoc command class * * @param args the command line arguments --- 78,90 ---- /** * Command class to access and browse the babeldoc modules from the command ! * line. * * @author bmcdonald ! * @version 1.1 */ public class BabeldocModuleCommand extends BabeldocCommand { /** ! * Setup the babeldoc command class. * * @param args the command line arguments *************** *** 95,101 **** /** ! * Main routine * ! * @param args */ public static void main(String[] args) { --- 95,101 ---- /** ! * Main routine. * ! * @param args command line */ public static void main(String[] args) { *************** *** 105,109 **** /** ! * process and execute the commandline and * * @param commandLine the command line --- 105,109 ---- /** ! * process and execute the commandline. * * @param commandLine the command line *************** *** 122,126 **** /** ! * List the currently load modules in the system */ public void listModules() { --- 122,126 ---- /** ! * List the currently load modules in the system. */ public void listModules() { *************** *** 141,145 **** /** ! * Setup the command line arguments * * @param options the commandline options to look for --- 141,145 ---- /** ! * Setup the command line arguments. * * @param options the commandline options to look for *************** *** 161,167 **** * Get the set of strings as a csv string. * ! * @param depSet ! * ! * @return */ private String getDependantsAsCVS(Set depSet) { --- 161,166 ---- * Get the set of strings as a csv string. * ! * @param depSet set string.s ! * @return csv string */ private String getDependantsAsCVS(Set depSet) { |