yoavs       2004/05/26 09:21:05

  Modified:    catalina/src/share/org/apache/catalina/util
                        ProcessEnvironment.java
  Log:
  Minor JavaDoc fixes (Bugzilla 28335)
  
  Revision  Changes    Path
  1.4       +9 -9      
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/util/ProcessEnvironment.java
  
  Index: ProcessEnvironment.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/util/ProcessEnvironment.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ProcessEnvironment.java   27 Feb 2004 14:58:50 -0000      1.3
  +++ ProcessEnvironment.java   26 May 2004 16:21:04 -0000      1.4
  @@ -173,7 +173,7 @@
   
       /**
        * Sets the desired command string
  -     * @param   String command as desired
  +     * @param   command String command as desired
        * @return  command string
        */
       protected String setCommand(String command) {
  @@ -201,7 +201,7 @@
   
       /**
        * Sets process' environment
  -     * @param    process' environment
  +     * @param    env process' environment
        * @return   Hashtable to which the process' environment was set
        */
       public Hashtable setEnvironment(Hashtable env) {
  @@ -221,7 +221,7 @@
   
       /**
        * Converts null strings to blank strings ("")
  -     * @param    string to be converted if necessary
  +     * @param    s string to be converted if necessary
        * @return   a non-null string, either the original or the empty string
        *           ("") if the original was <code>null</code>
        */
  @@ -232,8 +232,8 @@
   
       /**
        * Converts null strings to another string
  -     * @param    string to be converted if necessary
  -     * @param    string to return instead of a null string
  +     * @param    couldBeNull string to be converted if necessary
  +     * @param    subForNulls string to return instead of a null string
        * @return   a non-null string, either the original or the substitute
        *           string if the original was <code>null</code>
        */
  @@ -244,8 +244,8 @@
   
       /**
        * Converts blank strings to another string
  -     * @param    string to be converted if necessary
  -     * @param    string to return instead of a blank string
  +     * @param    couldBeBlank string to be converted if necessary
  +     * @param    subForBlanks string to return instead of a blank string
        * @return   a non-null string, either the original or the substitute
        *           string if the original was <code>null</code> or empty ("")
        */
  @@ -268,7 +268,7 @@
        * Should be overriden by subclasses to perform useful setup.
        * </p>
        *
  -     * @param    HttpServletRequest request associated with the
  +     * @param    req request associated with the
        *           Process' invocation
        * @return   true if environment was set OK, false if there was a problem
        *           and no environment was set
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to