From 98e0edd7aafc7c010234b5e11a9b78fb1b356714 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Tue, 14 Oct 2003 08:29:15 +0000 Subject: [PATCH] setXyZ works as good as setXYZ or setXYz or setXyz, PR 23732 git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275468 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/develop.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/manual/develop.html b/docs/manual/develop.html index b3544f406..af52519e1 100644 --- a/docs/manual/develop.html +++ b/docs/manual/develop.html @@ -18,7 +18,7 @@ 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 + 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. @@ -52,6 +52,11 @@ throws a BuildException. This method implements the task itself. +
+

* Actually the case of the letters after +the first one doesn't really matter to Ant, using all lower case is a +good convention, though.

+

The Life-cycle of a Task

  1. The task gets instantiated using a no-argument constructor, at parser