From 14bf2186883873aa84c962de5996f1a53fab571a Mon Sep 17 00:00:00 2001 From: Gintas Grigelionis Date: Sun, 18 Mar 2018 11:15:39 +0100 Subject: [PATCH] Adjust markup and formatting --- manual/develop.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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 @@
  • 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 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.
  • @@ -49,13 +49,13 @@ does not expand properties on the text it passes to the task.
  • For each nested element, write a create, add or addConfigured - method. A create method must be a 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.
  • + method. A create method must be a 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.
  • Write a public void execute() method, with no arguments, that throws a BuildException. This method implements the task itself.