From: bruce m. <tr...@us...> - 2004-07-30 01:33:39
|
Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/journal/command In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7955/modules/core/src/com/babeldoc/core/journal/command Modified Files: JournalCommand.java Log Message: javadoc and formatting here. Index: JournalCommand.java =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/journal/command/JournalCommand.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** JournalCommand.java 23 Jul 2004 22:31:54 -0000 1.7 --- JournalCommand.java 30 Jul 2004 01:33:00 -0000 1.8 *************** *** 102,112 **** */ public class JournalCommand extends BabeldocCommand { ! /** constants: display xml */ private static final int XML_DISP = 1; ! /** constants: display csv */ private static final int CSV_DISP = 2; ! /** instance: display mode */ private int dispMode = 0; --- 102,112 ---- */ public class JournalCommand extends BabeldocCommand { ! /** constants: display xml. */ private static final int XML_DISP = 1; ! /** constants: display csv. */ private static final int CSV_DISP = 2; ! /** instance: display mode. */ private int dispMode = 0; *************** *** 114,120 **** /** ! * process the commandline arguments * ! * @param args */ public JournalCommand(String[] args) { --- 114,120 ---- /** ! * process the commandline arguments. * ! * @param args command line arguments. */ public JournalCommand(String[] args) { *************** *** 123,127 **** /** ! * handle displaying of a document * * @param cmdLine the command line --- 123,127 ---- /** ! * handle displaying of a document. * * @param cmdLine the command line *************** *** 161,165 **** /** ! * Listing ticket information * * @param cmdLine the command line --- 161,165 ---- /** ! * Listing ticket information. * * @param cmdLine the command line *************** *** 236,240 **** /** ! * handle replaying of a ticket * * @param cmdLine the command line --- 236,240 ---- /** ! * handle replaying of a ticket. * * @param cmdLine the command line *************** *** 261,265 **** /** ! * handle listing the steps for a ticket * * @param cmdLine the command line --- 261,265 ---- /** ! * handle listing the steps for a ticket. * * @param cmdLine the command line *************** *** 285,291 **** /** ! * Execute the command line * ! * @param commandLine */ public void execute(CommandLine commandLine) { --- 285,291 ---- /** ! * Execute the command line. * ! * @param commandLine command line */ public void execute(CommandLine commandLine) { *************** *** 304,310 **** /** ! * Main routine * ! * @param args */ public static void main(String[] args) { --- 304,310 ---- /** ! * Main routine. * ! * @param args commandline. */ public static void main(String[] args) { *************** *** 358,362 **** /** ! * Convert a string date into a java date * * @param arg the date string --- 358,362 ---- /** ! * Convert a string date into a java date. * * @param arg the date string *************** *** 383,387 **** /** ! * Determine if the argument at the position is a valid display mode modifier * * @param commandline the command line --- 383,387 ---- /** ! * Determine if the argument at the position is a valid display mode modifier. * * @param commandline the command line *************** *** 400,404 **** /** ! * Query the journal and render the results * * @param qts The tickets to query --- 400,404 ---- /** ! * Query the journal and render the results. * * @param qts The tickets to query |