diff --git a/manual/develop.html b/manual/develop.html index e2f713aae..760da11f6 100644 --- a/manual/develop.html +++ b/manual/develop.html @@ -34,8 +34,8 @@
public void
method that takes a single argument. The name of the method
must begin with set
, followed by the attribute name, with the first character of
- the name in uppercase, and the rest in lowercase*. That
- is, to support an attribute named file
you create a
+ the name in uppercase, and the rest in lowercase*. That is, to
+ support an attribute named file you create a
method setFile
. Depending on the type of the argument, Ant will
perform some conversions for you, see below.public
method that takes no arguments and returns
- an Object
type. The name of the create method must begin with create
,
- followed by the element name. An add (or addConfigured) method must be a public void
- method that takes a single argument of an Object
type with a no-argument constructor.
- The name of the add (addConfigured) method must begin with add
- (addConfigured
), followed by the element name. For a more complete discussion
- see below.public
method that takes no arguments and
+ returns an Object
type. The name of the create method must begin
+ with create
, followed by the element name. An add (or addConfigured) method must be
+ a public void
method that takes a single argument of an Object
type
+ with a no-argument constructor. The name of the add (addConfigured) method must begin
+ with add
(addConfigured
), followed by the element name. For a more
+ complete discussion see below.
public void execute()
method, with no arguments, that throws
a BuildException
. This method implements the task itself.