You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by di...@apache.org on 2005/01/16 21:16:06 UTC

cvs commit: jakarta-commons/launcher/src/java/org/apache/commons/launcher/types ConditionalVariable.java

dirkv       2005/01/16 12:16:06

  Modified:    launcher/src/java/org/apache/commons/launcher ChildMain.java
                        LaunchTask.java Launcher.java
               launcher/src/java/org/apache/commons/launcher/types
                        ConditionalVariable.java
  Log:
  fix javadoc
  
  Revision  Changes    Path
  1.5       +1 -3      jakarta-commons/launcher/src/java/org/apache/commons/launcher/ChildMain.java
  
  Index: ChildMain.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/launcher/src/java/org/apache/commons/launcher/ChildMain.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ChildMain.java	28 Feb 2004 11:52:20 -0000	1.4
  +++ ChildMain.java	16 Jan 2005 20:16:06 -0000	1.5
  @@ -141,12 +141,10 @@
   
       /**
        * Invoke the target application.
  -     *
  -     * @param args command line arguments
        */
       public void run() {
   
  -        // If there are no arguments, do nothing
  +        // If there are no command line arguments, do nothing
           if (args == null || args.length == 0)
               return;
   
  
  
  
  1.6       +2 -2      jakarta-commons/launcher/src/java/org/apache/commons/launcher/LaunchTask.java
  
  Index: LaunchTask.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/launcher/src/java/org/apache/commons/launcher/LaunchTask.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- LaunchTask.java	28 Feb 2004 11:52:20 -0000	1.5
  +++ LaunchTask.java	16 Jan 2005 20:16:06 -0000	1.6
  @@ -844,7 +844,7 @@
       /**
        * Set the filter class' classpath.
        *
  -     * @param classpath the classpath for the filter class
  +     * @param filterClasspath the classpath for the filter class
        */
       public void setFilterclasspath(Path filterClasspath) {
   
  @@ -940,7 +940,7 @@
        * JRE. Setting this flag to false explicitly allows the user to use
        * a JRE.
        *
  -     * @param redirect true if a JDK is required and false if only a JRE
  +     * @param requireTools true if a JDK is required and false if only a JRE
        *  is required
        */
       public void setRequiretools(boolean requireTools) {
  
  
  
  1.8       +2 -2      jakarta-commons/launcher/src/java/org/apache/commons/launcher/Launcher.java
  
  Index: Launcher.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/launcher/src/java/org/apache/commons/launcher/Launcher.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Launcher.java	24 Jul 2004 22:02:22 -0000	1.7
  +++ Launcher.java	16 Jan 2005 20:16:06 -0000	1.8
  @@ -486,7 +486,7 @@
       /**
        * Print a detailed error message and exit.
        *
  -     * @param message the exception whose stack trace is to be printed.
  +     * @param t the exception whose stack trace is to be printed.
        */
       public static void error(Throwable t) {
   
  @@ -850,7 +850,7 @@
       /**
        * Set the PrintStream that all output should printed to.
        *
  -     * @param a PrintStream instance to print output to
  +     * @param log PrintStream instance to print output to
        */
       public static synchronized void setLog(PrintStream log) {
   
  
  
  
  1.7       +3 -3      jakarta-commons/launcher/src/java/org/apache/commons/launcher/types/ConditionalVariable.java
  
  Index: ConditionalVariable.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/launcher/src/java/org/apache/commons/launcher/types/ConditionalVariable.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ConditionalVariable.java	28 Feb 2004 12:43:31 -0000	1.6
  +++ ConditionalVariable.java	16 Jan 2005 20:16:06 -0000	1.7
  @@ -103,7 +103,7 @@
       /**
        * Set the value to a {@link File}.
        *
  -     * @param value the {@link File} for this variable
  +     * @param file the {@link File} for this variable
        */
       public void setFile(File file) {
   
  @@ -114,7 +114,7 @@
       /**
        * Set the value to a {@link Path}.
        *
  -     * @param value the {@link Path} for this variable
  +     * @param path the {@link Path} for this variable
        */
       public void setPath(Path path) {
   
  @@ -154,7 +154,7 @@
       /**
        * Set the value to a {@link Path}.
        *
  -     * @param value the {@link Path} for this variable
  +     * @param path the {@link Path} for this variable
        */
       public void setFile(Path path) {
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org