diff --git a/docs/manual/develop.html b/docs/manual/develop.html index 949a7a530..18c536068 100644 --- a/docs/manual/develop.html +++ b/docs/manual/develop.html @@ -29,7 +29,7 @@

It is very easy to write your own task:

  1. Create a Java class that extends org.apache.tools.ant.Task - or another class that was desgined to be extended.
  2. + or another class that was designed to be extended.
  3. For each attribute, write a setter method. The setter method must be a public void method that takes a single argument. The name of the method must begin with set, followed by the @@ -380,7 +380,6 @@ public class MyVeryOwnTask extends Task {
  4. Use your task in the rest of the buildfile.
-

Example

@@ -425,7 +424,6 @@ compiled.
 
-

Another way to add a task (more permanently), is to add the task name and implementing class name to the default.properties file in the org.apache.tools.ant.taskdefs @@ -487,7 +485,6 @@ been configured.


Source code integration

- The other way to extend Ant through Java is to make changes to existing tasks, which is positively encouraged. Both changes to the existing source and new tasks can be incorporated back into the Ant codebase, which benefits all users and spreads the maintenance load around. @@ -503,8 +500,6 @@ Ant also has some which provides some advice to people developing and testing tasks. Even if you intend to keep your tasks to yourself, you should still read this as it should be informative. - -