merge java docs

Is it possible to merge javadocs?If so how?
[57 byte] By [himaa] at [2007-10-3 7:17:08]
# 1

You can use -link (or -linkoffline) to link from the docs generated by one javadoc run to the docs generated by another javadoc run. There is no javadoc option for merging the class lists, alphabetic index, tree, or other list.

Here's an example from the Javadoc reference page:

Example using relative links to the external docs - Let's say you have two packages whose docs are generated in different runs of the Javadoc tool, and those docs are separated by a relative path. In this example, the packages are com.apipackage, an API, and com.spipackage, an SPI (Service Provide Interface). You want the documentation to reside in docs/api/com/apipackage and docs/spi/com/spipackage. Assuming the API package documentation is already generated, and that docs is the current directory, you would document the SPI package with links to the API documentation by running:

C:> javadoc -d ./spi -link ../api com.spipackage

Notice the -link argument is relative to the destination directory (docs/spi).

http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/javadoc.html#linkrelativeexample

dhkramera at 2007-7-15 2:14:05 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
thanq
himaa at 2007-7-15 2:14:05 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...