Howdy,

Is it possible to do something like this when defining my own task?  If 
so, anyone care to point me in the right direction?

<mytask myAttr="foo" myAttr="bar" myAttr="blee">

This gives me an error about "myAttr" already appearing in this tag.  
I'd like to be able to append all these attributes together like this.

public void getAttr(String attr) {
   if (this.attr == null)
      this.attr = "";
   this.attr += attr;
}

Any thoughts, suggestions, places to look, et cetera, would be much 
appreciated.

/bill

Reply via email to