Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Answered by Sergei Chevtsov, 06-29-2007

01. Use the Export Wizard to generate Javadoc for your classes. Check "Save the settings as an Ant script" on the last page.
1 2. Open javadoc.xml.
2 3. For each external API, add the following line as child of <javadoc> element:
<link href="url to the API directory on the web" />

Some of the most common URLs are:
JDK => http://java.sun.com/j2se/1.5.0/docs/api/
Eclipse => http://help.eclipse.org/help32/nftopic/org.eclipse.platform.doc.isv/reference/api/

34. Right click javadoc.xml => "Run As" => "Ant Build".
4 5. Don't ever use the Export Wizard to generate Javadoc again.

...