From e5598cb612da0dec827508eab73502423d785dc7 Mon Sep 17 00:00:00 2001
From: Stefan Bodewig
Date: Mon, 15 Feb 2010 16:04:24 +0000
Subject: [PATCH] clarify where addConfigured plays into the task's life-cycle.
git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@910244 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/develop.html | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/docs/manual/develop.html b/docs/manual/develop.html
index 0c906022d..1c29bdc53 100644
--- a/docs/manual/develop.html
+++ b/docs/manual/develop.html
@@ -106,7 +106,9 @@ good convention, though.
All child elements of the XML element corresponding to this task
are created via this task's createXXX()
methods or
instantiated and added to this task via its addXXX()
- methods, at run time.
+ methods, at run time. Child elements corresponding
+ to addConfiguredXXX()
are created at this point but
+ the actual addCondifgired
method is not called.
All attributes of this task get set via their corresponding
setXXX
methods, at runtime.
@@ -118,6 +120,10 @@ good convention, though.
All attributes of all child elements get set via their corresponding
setXXX
methods, at runtime.
+ If child elements of the XML element corresponding to this task
+ have been created for addConfiguredXXX()
methods,
+ those methods get invoked now.
+
execute()
is called at runtime.
If target1
and target2
both depend
on target3
, then running