]> source.dussan.org Git - aspectj.git/commitdiff
comments only. no build.jar update needed.
authorwisberg <wisberg>
Mon, 6 Jan 2003 23:30:18 +0000 (23:30 +0000)
committerwisberg <wisberg>
Mon, 6 Jan 2003 23:30:18 +0000 (23:30 +0000)
build/src/org/aspectj/internal/tools/ant/taskdefs/AntBuilder.java

index 030d0a4a66167138de9ccaad9b9258a2515858b9..4549d20042a298939ceb43bda2860ca2169d72be 100644 (file)
@@ -46,10 +46,17 @@ public class AntBuilder extends Builder {
      * which in some cases causes the tasks to fail.
      */
 
-    /** @return a Builder for this project and configuration */
+    /**
+     * Factory for a Builder.
+     * @param config the String configuration, where only substrings
+     *        "verbose" and "useEclipseCompiles" are significant
+     * @param project the owning Project for all tasks (not null)
+     * @param tempDir the File path to a temporary dir for side effects (may be null)
+     * @return a Builder for this project and configuration 
+     */
     public static Builder getBuilder(String config, Project project, File tempDir) {
         boolean useEclipseCompiles = false;
-        boolean verbose = false;
+        boolean verbose = false;        
         if (null != config) {
             if (-1 != config.indexOf("useEclipseCompiles")) {
                 useEclipseCompiles = true;