main/org/apache/tools/ant/taskdefs/condition/Condition.java
>-Ursprüngliche Nachricht-
>Von: Emir Mahmut BAHSI [mailto:[EMAIL PROTECTED]
>Gesendet: Dienstag, 31. Juli 2007 19:35
>An: Ant Users List
>Betreff: Re: AW: AW: while-like structure in Ant
>
>Thanks for
Thanks for the information Jan. I am using both 'http' condition and 'get' task
in my problem. I really want to know how can I create an 'http' condition in
the javascript code below?
>>myhttp = project.createTask("http");
>>myhttp.setUrl("a url address");
In the code above createTask is not ap
A condition is a different thing than a task
- a condition checks something
- a task does something.
Of course an implementing class maybe can do both ( ).
For HTTP there are two different implementations:
- condition
- task
(- http AntLib http://ant.apache.org/antlibs/sandbox.html )
Jan
>--