oh yeah, I suppose you want to do this from ant:

from the ant doco on the javadoc task (haven't tried this myself):
link
Create link to javadoc output at the given URL. This performs the same role as the 
link and linkoffline attributes. You can use
either syntax (or both at once), but with the nested elements you can easily specify 
multiple occurrences of the arguments.

Parameters
      Attribute Description Required
      href The URL for the external documentation you wish to link to Yes
      offline True if this link is not available online at the time of generating the 
documentation No
      packagelistLoc The location to the directory containing the package-list file 
for the external documentation Only if the
offline attribute is true



cheers
dim

----- Original Message -----
From: "Dmitri Colebatch" <[EMAIL PROTECTED]>
To: "Jason Dillon" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Saturday, February 23, 2002 2:35 PM
Subject: Re: [JBoss-dev] JBoss javadoc & links to java.lang


> Jason,
>
> You can link to other packages like this:
>
> [dim@host63 javadoc]$ javadoc -d docs/ \
> > -linkoffline http://java.sun.com/j2se/1.3/docs/api/ \
> > . src/Test.java
>
> and in the current directory have a file called package-list that contains
> all the packages you want to link to that url.
>
> alternatively, if you want to require your users to be online at the time of 
>generation, you can do:
>
> [dim@host63 javadoc]$ javadoc -d docs/ \
> > -link http://java.sun.com/j2se/1.3/docs/api/ src/Test.java
>
>
> which will dynamically suck down the package-list file from the url.
>
> cheers
> dim
>
> ps - this is from 
>http://www.mail-archive.com/[email protected]/msg13894.html
>
>
> ----- Original Message -----
> From: "Jason Dillon" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Saturday, February 23, 2002 2:16 PM
> Subject: [JBoss-dev] JBoss javadoc & links to java.lang
>
>
> > Does anyone know the correct way to make javadoc generate links to an
> > external javadoc site?  I have seen this before... but have been to lazy
> > to figure it out.  Can anyone explain this to me so I can remain lazy?
> >
> > --jason
> >
> >
> > _______________________________________________
> > Jboss-development mailing list
> > [EMAIL PROTECTED]
> > https://lists.sourceforge.net/lists/listinfo/jboss-development
>
>
> _______________________________________________
> Jboss-development mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-development


_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to