diff --git a/docs/index.html b/docs/index.html index 14685e4ee..d53776ba9 100644 --- a/docs/index.html +++ b/docs/index.html @@ -525,7 +525,7 @@ execution depending on system parameters.
<available class="org.whatever.Myclass" property="Myclass.present" />+
<available classname="org.whatever.Myclass" property="Myclass.present" />
sets the property Myclass.present
to the value "true"
if the org.whatever.Myclass is found in Ant's classpath.
<java class="test.Main" />-
<java class="test.Main" args="-h" />-
<java class="test.Main" +<java classname="test.Main" />+<java classname="test.Main" args="-h" />+<java classname="test.Main" args="-h" fork="yes" jvmargs="-Xrunhprof:cpu=samples,file=log.txt,depth=3" @@ -1831,7 +1831,7 @@ This also holds for properties loaded from a property file.Examples
-<rmic class="com.xyz.FooBar" base="${build}/classes" />+<rmic classname="com.xyz.FooBar" base="${build}/classes" />runs the rmic compiler for the class
com.xyz.FooBar
. The compiled files will be stored in the directory${build}/classes
.
@@ -1933,13 +1933,13 @@ href="#writingowntask">Writing your own task".Yes - class +classname the full class name implementing the task Yes Examples
-<taskdef name="myjavadoc" value="com.mydomain.JavadocTask" />+<taskdef name="myjavadoc" classname="com.mydomain.JavadocTask" />makes a task called
myjavadoc
available to Ant. The classcom.mydomain.JavadocTask
implements the task.
@@ -2120,7 +2120,7 @@ task has one attribute called "message".<project name="TaskTest" default="test" basedir="."> <target name="init"> - <taskdef name="mytask" class="com.mydomain.MyVeryOwnTask"/> + <taskdef name="mytask" classname="com.mydomain.MyVeryOwnTask"/> </target> <target name="test">