AntJava Doc wildcard problem

I am trying to wild card the href attribute in <link> element in my ant build.xml file to generate javadocs, and it fails real bad, Is there a way I can wildcard the following statement

<javadoc .........>

<link offline="true" href="http://java.sun.com/j2se/1.4.2/docs/api/" packagelistLoc="some local location of the file"/>

<link offline="false" href="../Project1/" />

<link offline="false" href="../Project2/" />

<link offline="false" href="../Project3/" />

<link offline="false" href="../Project4/" />

</javadoc>

i tried

<link offline="false" href="../* " />

doesn't work :(

[707 byte] By [raj_joa] at [2007-10-2 8:20:52]
# 1

why don't you just add the href links in the standard javadoc parameters? We add custom links in our javadocs liek this:

<javadoc

...

link="http://java.sun.com/j2se/1.4.2/docs/api"

...

bottom='&#169; &lt;a href="http://www.we.com" target="we"&gt;This is our home&lt;/a&gt;'

...

/>

MartinHilperta at 2007-7-16 22:19:59 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...