You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Bruno P. Kinoshita (JIRA)" <ji...@apache.org> on 2015/05/01 10:21:06 UTC

[jira] [Updated] (JELLY-183) jelly-ant-tags TaskContainer Support

     [ https://issues.apache.org/jira/browse/JELLY-183?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bruno P. Kinoshita updated JELLY-183:
-------------------------------------
    Affects Version/s: Review Patch

> jelly-ant-tags TaskContainer Support
> ------------------------------------
>
>                 Key: JELLY-183
>                 URL: https://issues.apache.org/jira/browse/JELLY-183
>             Project: Commons Jelly
>          Issue Type: New Feature
>          Components: taglib.ant
>    Affects Versions: Review Patch
>            Reporter: dion gillard
>         Attachments: taskcontainer.patch
>
>
> -- 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();



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)