diff --git a/manual/Tasks/ant.html b/manual/Tasks/ant.html index f417efd9a..65b9d7772 100644 --- a/manual/Tasks/ant.html +++ b/manual/Tasks/ant.html @@ -293,6 +293,7 @@ will be set to the specified value of the property element unless the correspond the dir attribute explicitly.
These are different ways of using the task:
<ant antfile="subproject/subbuild.xml" target="compile"/> @@ -325,12 +326,12 @@ this: </path>
and the called build file (subbuild.xml) also defines a <path>
-with the id path1, but path2 is not defined:
<ant antfile="subbuild.xml" inheritrefs="true"/>
will not override subbuild's definition of path1, but make the parent's -definition of path2 available in the subbuild.
+definition of path2 available in the subbuild, whereas<ant antfile="subbuild.xml"/>@@ -338,14 +339,14 @@ definition of path2 available in the subbuild.
<ant antfile="subbuild.xml" inheritrefs="false"/>-
will neither override path1 nor copy path2.
+will neither override path1 nor copy path2, while
<ant antfile="subbuild.xml" inheritrefs="false"> <reference refid="path1"/> </ant>-
will override subbuild's definition of path1.
+will override subbuild's definition of path1, and
<ant antfile="subbuild.xml" inheritrefs="false"> diff --git a/manual/Tasks/antcall.html b/manual/Tasks/antcall.html index 201cbf340..1beed1321 100644 --- a/manual/Tasks/antcall.html +++ b/manual/Tasks/antcall.html @@ -154,6 +154,7 @@ single target whose dependencies are the targets so specified, in the order specExamples
+The following
<target name="default"> <antcall target="doSomethingElse"> @@ -164,13 +165,11 @@ single target whose dependencies are the targets so specified, in the order spec <target name="doSomethingElse"> <echo message="param1=${param1}"/> </target>-Will run the target doSomethingElse and echo
- +param1=value
.will run the target doSomethingElse and echo
param1=value
, whereas<antcall ... > <reference refid="path1" torefid="path2"/> </antcall>-will copy the parent's definition of path1 into the new project using the id path2.
diff --git a/manual/Tasks/antlr.html b/manual/Tasks/antlr.html index 996809b03..741f9f7ed 100644 --- a/manual/Tasks/antlr.html +++ b/manual/Tasks/antlr.html @@ -137,12 +137,12 @@ nested<jvmarg>
attributes, for example: in Command line arguments.Example
+Invoke ANTLR on grammar file etc/java.g, writing the generated files +to build/src:
<antlr target="etc/java.g" outputdirectory="build/src"/>-This invokes ANTLR on grammar file etc/java.g, writing the generated files -to build/src.