|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.tools.ant.ProjectComponent | +--org.apache.tools.ant.Task | +--org.apache.tools.ant.taskdefs.Ant
Build a sub-project.
<target name="foo" depends="init"> <ant antfile="build.xml" target="bar" > <property name="property1" value="aaaaa" /> <property name="foo" value="baz" /> </ant> </target> <target name="bar" depends="init"> <echo message="prop is ${property1} ${foo}" /> </target>
Nested Class Summary | |
static class |
Ant.Reference
Helper class that implements the nested <reference> element of <ant> and <antcall>. |
Field Summary |
Fields inherited from class org.apache.tools.ant.Task |
description, location, target, taskName, taskType, wrapper |
Fields inherited from class org.apache.tools.ant.ProjectComponent |
project |
Constructor Summary | |
Ant()
|
Method Summary | |
void |
addPropertyset(PropertySet ps)
Set of properties to pass to the new project. |
void |
addReference(Ant.Reference r)
Reference element identifying a data type to carry over to the new project. |
Property |
createProperty()
Property to pass to the new project. |
void |
execute()
Do the execution. |
void |
handleErrorFlush(java.lang.String output)
Pass output sent to System.err to the new project. |
void |
handleErrorOutput(java.lang.String output)
Pass output sent to System.err to the new project. |
void |
handleFlush(java.lang.String output)
Pass output sent to System.out to the new project. |
int |
handleInput(byte[] buffer,
int offset,
int length)
Process input into the ant task |
void |
handleOutput(java.lang.String output)
Pass output sent to System.out to the new project. |
void |
init()
Creates a Project instance for the project to call. |
void |
setAntfile(java.lang.String s)
The build file to use. |
void |
setDir(java.io.File d)
The directory to use as a base directory for the new Ant project. |
void |
setInheritAll(boolean value)
If true, pass all properties to the new Ant project. |
void |
setInheritRefs(boolean value)
If true, pass all references to the new Ant project. |
void |
setOutput(java.lang.String s)
Filename to write the output to. |
void |
setTarget(java.lang.String s)
The target of the new Ant project to execute. |
Methods inherited from class org.apache.tools.ant.Task |
getDescription, getLocation, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, isInvalid, log, log, maybeConfigure, perform, reconfigure, setDescription, setLocation, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType |
Methods inherited from class org.apache.tools.ant.ProjectComponent |
getProject, setProject |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public Ant()
Method Detail |
public void setInheritAll(boolean value)
value
- if true pass all properties to the new Ant project.public void setInheritRefs(boolean value)
value
- if true, pass all references to the new Ant projectpublic void init()
init
in class Task
public void handleOutput(java.lang.String output)
handleOutput
in class Task
output
- a line of outputpublic int handleInput(byte[] buffer, int offset, int length) throws java.io.IOException
handleInput
in class Task
buffer
- the buffer into which data is to be read.offset
- the offset into the buffer at which data is stored.length
- the amount of data to read
java.io.IOException
- if the data cannot be readTask.handleInput(byte[], int, int)
public void handleFlush(java.lang.String output)
handleFlush
in class Task
output
- The output to log. Should not be null
.public void handleErrorOutput(java.lang.String output)
handleErrorOutput
in class Task
output
- The error output to log. Should not be null
.public void handleErrorFlush(java.lang.String output)
handleErrorFlush
in class Task
output
- The error output to log. Should not be null
.public void execute() throws BuildException
execute
in class Task
BuildException
- if a target tries to call itself
probably also if a BuildException is thrown by the new projectpublic void setDir(java.io.File d)
d
- new directorypublic void setAntfile(java.lang.String s)
s
- build file to usepublic void setTarget(java.lang.String s)
s
- target to invokepublic void setOutput(java.lang.String s)
s
- file to which the output should go topublic Property createProperty()
public void addReference(Ant.Reference r)
r
- reference to addpublic void addPropertyset(PropertySet ps)
ps
- property set to add
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |