Index: src/main/org/apache/tools/ant/DynamicConfigurator.java
===================================================================
RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/DynamicConfigurator.java,v
retrieving revision 1.2
diff -u -r1.2 DynamicConfigurator.java
--- src/main/org/apache/tools/ant/DynamicConfigurator.java	29 Apr 2002 16:49:39 -0000	1.2
+++ src/main/org/apache/tools/ant/DynamicConfigurator.java	9 Jul 2002 16:15:06 -0000
@@ -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;
 }

