On 12/12/10 2:34 PM, Benjamin de Dardel wrote:
> Hi all,
>
> I use xslt task programmaticaly, and I would like to add parameters,
> like :
> <param name="html.stylesheet" expression="style.css" />.
>
> Do you know how I can add it ?
Param p = xslt.createParam();      
p.setName("html.stylesheet");
  p.setValue("style.css");
      ...

Regards,

Antoine

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org
For additional commands, e-mail: dev-h...@ant.apache.org

Reply via email to