Java Mailing List Archive

http://www.ant-tasks.com/

Home » Ant Users List »

AW: Question about simple nested text elements

Jan Materne

2010-02-05

Replies: Find Java Web Hosting

Author LoginPost Reply
You have several things:
- add <things> to <mytask>
class MyTask extends Task { addThings(Things t)
- add <thing> to <things>
class Things extends DataType { addThing(Thing t)
- add text to <thing>
class Thing extends DataType { addText(String t)


For documentation:
* Tutorial about writing tasks
http://ant.apache.org/manual/tutorials.html
addText: http://ant.apache.org/manual/tutorial-writing-tasks.html#NestedText
* Source code of Ant
http://svn.apache.org/repos/asf/ant/core/trunk/src/main/org/apache/tools/ant/


Jan


>-----Ursprüngliche Nachricht-----
>Von: scabbage [mailto:guanshan@(protected)]
>Gesendet: Donnerstag, 4. Februar 2010 22:41
>An: user@(protected)
>Betreff: Question about simple nested text elements
>
>
>I'm trying to create my own customized task in Ant 1.7.1. I
>would like to use
>my task this way:
>
><mytask a="blah" b="foo">
>  <things>
>    <thing>xxx</thing>
>    <thing>yyy</thing>
>    <thing>zzz</thing>
>  </things>
></mytask>
>
>My class looks like:
>
>public class MyTask extends Task {
>  private String a;
>  private String b;
>  private List<String> things = new ArrayList<String>();
>
>  // setting and gettings for a and b ...
>
>  public void execute() {
>    // loop through things
>  }
>
>}
>
>Now can anyone tell me how I should right the setter for
>"things"? The Ant
>doc is very vague about simple nested text elements.
>
>Thanks.
>
>David
>--
>View this message in context:
>http://old.nabble.com/Question-about-simple-nested-text-element
s-tp27460186p27460186.html
>Sent from the Ant - Users mailing list archive at Nabble.com.
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: user-unsubscribe@(protected)
>For additional commands, e-mail: user-help@(protected)
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)

©2008 ant-tasks.com - Jax Systems, LLC, U.S.A.