Method Summary |
|
public void | add(ResourceCollection rc) Adds a resource collection to the implicit build path. |
public void | addConfiguredTarget(TargetElement t) Add a target to this Ant invocation. |
public void | addDirset(DirSet set) Adds a directory set to the implicit build path. |
public void | addFilelist(FileList list) Adds an ordered file list to the implicit build path. |
public void | addFileset(FileSet set) Adds a file set to the implicit build path. |
public void | addProperty(Property p) Corresponds to <ant> 's
nested <property> element. |
public void | addPropertyset(PropertySet ps) Corresponds to <ant> 's
nested <propertyset> element. |
public void | addReference(Ant.Reference r) Corresponds to <ant> 's
nested <reference> element. |
public Path | createBuildpath() Creates a nested build path, and add it to the implicit build path. |
public Path.PathElement | createBuildpathElement() Creates a nested <buildpathelement> ,
and add it to the implicit build path. |
public void | execute() Runs the various sub-builds. |
public void | handleErrorFlush(String output) Pass output sent to System.err to the new project.
Parameters: output - The error output to log. |
public void | handleErrorOutput(String output) Pass output sent to System.err to the new project.
Parameters: output - The error output to log. |
public void | handleFlush(String output) Pass output sent to System.out to the new project.
Parameters: output - The output to log. |
public int | handleInput(byte[] buffer, int offset, int length) |
public void | handleOutput(String output) Pass output sent to System.out to the new project. |
public void | setAntfile(String antfile) This method builds the file name to use in conjunction with directories.
Defaults to "build.xml".
If genericantfile is set, this attribute is ignored.
Parameters: antfile - the short build file name. |
public void | setBuildpath(Path s) Set the buildpath to be used to find sub-projects. |
public void | setBuildpathRef(Reference r) Buildpath to use, by reference. |
public void | setFailonerror(boolean failOnError) Sets whether to fail with a build exception on error, or go on. |
public void | setGenericAntfile(File afile) This method builds a file path to use in conjunction with directories. |
public void | setInheritall(boolean b) Corresponds to <ant> 's
inheritall attribute. |
public void | setInheritrefs(boolean b) Corresponds to <ant> 's
inheritrefs attribute. |
public void | setOutput(String s) Corresponds to <ant> 's
output attribute. |
public void | setTarget(String target) The target to call on the different sub-builds. |
public void | setVerbose(boolean on) Enable/ disable verbose log messages showing when each sub-build path is entered/ exited. |