Details
-
New Feature
-
Status: Open
-
Major
-
Resolution: Unresolved
-
Review Patch
-
None
-
None
Description
– Moved from Bugzilla 28812 –
I have added support for child-anttasks as described in
http://ant.apache.org/manual/develop.html#writingowntask when using a
TaskContainer-implementation. These are used in webtest-project by Canoo for
example.
diff follows:
Index: AntTag.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/jelly/jelly-tags/ant/src/java/org/apache/commons/jelly/tags/ant/AntTag.java,v
retrieving revision 1.27
diff -u -r1.27 AntTag.java
— AntTag.java 25 Feb 2004 01:23:59 -0000 1.27
+++ AntTag.java 6 May 2004 15:35:56 -0000
@@ -181,6 +181,10 @@
// now lets set all the attributes of the child elements
// XXXX: to do!
+ if (parentTask instanceof TaskContainer)
{ + ((TaskContainer)parentTask).addTask(task); + }+
// now we're ready to invoke the task
// XXX: should we call execute() or perform()?
task.perform();