diff options
author | wisberg <wisberg> | 2003-01-06 23:30:18 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-01-06 23:30:18 +0000 |
commit | f70716bf3bb8816393303a1acad4fe048077203e (patch) | |
tree | 95f578e65b8442f6ccb8d3f4dda1f2711181363c /build | |
parent | b8bf1d40955cc07bc430f1f70a20e62436e2dabd (diff) | |
download | aspectj-f70716bf3bb8816393303a1acad4fe048077203e.tar.gz aspectj-f70716bf3bb8816393303a1acad4fe048077203e.zip |
comments only. no build.jar update needed.
Diffstat (limited to 'build')
-rw-r--r-- | build/src/org/aspectj/internal/tools/ant/taskdefs/AntBuilder.java | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/build/src/org/aspectj/internal/tools/ant/taskdefs/AntBuilder.java b/build/src/org/aspectj/internal/tools/ant/taskdefs/AntBuilder.java index 030d0a4a6..4549d2004 100644 --- a/build/src/org/aspectj/internal/tools/ant/taskdefs/AntBuilder.java +++ b/build/src/org/aspectj/internal/tools/ant/taskdefs/AntBuilder.java @@ -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; |