diff --git a/docs/manual/develop.html b/docs/manual/develop.html index fd28aefa9..88ff90e8b 100644 --- a/docs/manual/develop.html +++ b/docs/manual/develop.html @@ -76,9 +76,18 @@ good convention, though.
perform() method. This instantiates
+ the task. This means that tasks only gets
+ instantiated at run time.
+ project and
@@ -86,18 +95,18 @@ good convention, though.
id attribute to this task,
the project
- registers a reference to this newly created task, at parser
+ registers a reference to this newly created task, at run
time.target variable.init() is called at parser time.init() is called at run time.createXXX() methods or
instantiated and added to this task via its addXXX()
- methods, at parser time.setXXX methods, at runtime.setXXX methods, at runtime.execute() is called at runtime. While the above initialization
- steps only occur once, the execute() method may be
- called more than once, if the task is invoked more than once. For example,
- if target1 and target2 both depend
+ execute() is called at runtime.
+ If target1 and target2 both depend
on target3, then running
'ant target1 target2' will run all tasks in
target3 twice.