bodewig     2002/09/26 06:31:55

  Modified:    src/main/org/apache/tools/ant Tag: ANT_15_BRANCH
                        DynamicConfigurator.java ExitException.java
  Log:
  Merge dIon's javadoc patches from HEAD
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.2.2.1   +15 -0     
jakarta-ant/src/main/org/apache/tools/ant/DynamicConfigurator.java
  
  Index: DynamicConfigurator.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/DynamicConfigurator.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- DynamicConfigurator.java  29 Apr 2002 16:49:39 -0000      1.2
  +++ DynamicConfigurator.java  26 Sep 2002 13:31:55 -0000      1.2.2.1
  @@ -61,8 +61,23 @@
    * @since Ant 1.5
    */
   public interface DynamicConfigurator {
  +    
  +    /**
  +     * Set a named attribute to the given value
  +     * 
  +     * @param name the name of the attribute
  +     * @param value the new value of the attribute
  +     * @throws BuildException when any error occurs
  +     */    
       public void setDynamicAttribute(String name, String value)
               throws BuildException;
   
  +    /**
  +     * Create an element with the given name
  +     *
  +     * @param name the element nbame
  +     * @throws BuildException when any error occurs
  +     * @return the element created
  +     */    
       public Object createDynamicElement(String name) throws BuildException;
   }
  
  
  
  1.5.2.1   +3 -1      
jakarta-ant/src/main/org/apache/tools/ant/ExitException.java
  
  Index: ExitException.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/ExitException.java,v
  retrieving revision 1.5
  retrieving revision 1.5.2.1
  diff -u -r1.5 -r1.5.2.1
  --- ExitException.java        20 Feb 2002 14:54:28 -0000      1.5
  +++ ExitException.java        26 Sep 2002 13:31:55 -0000      1.5.2.1
  @@ -75,7 +75,9 @@
       }
   
       /**
  -     * @return the status code return via System.exit()
  +     * The status code returned by System.exit()
  +     *
  +     * @return the status code returned by System.exit()
        */
       public int getStatus() {
           return status;
  
  
  

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

Reply via email to