need help quickly plz
hi all
can any one tell me how to make this link java.lang.Object active in my API
documentation, so the user can put my API docs in JDK docs and link to
java.lang.Object through it.
Class Log
java.lang.Object< i nead to make it active link
|
+--net.fun.srawing.window
also, the @author tage doesn't shown in Docs, don't know why while all other
tages works fine
/**
*
* @author Moanmber
* @version 0.5 2002/08/15
* @since 0.5
* @see java.lang.Object()
*
*/
i use a JavaDoc generator integrated into Forte for java.
i would appreciate if you offered me links to easy to use articles
about JavaDoc tool, it takes too long time to >Study< such a tool :(
thanks for help
-mnmmm
[842 byte] By [
mnmmm] at [2007-9-27 19:06:59]

For @author tags to appear, use the -author option.
http://java.sun.com/j2se/1.4.1/docs/tooldocs/windows/javadoc.html#author
For the java.lang.Object link to appear, you must first decide
which version of the J2SE to point to. Assuming it is 1.4:
1) Open the package-list file in a browser at
http://java.sun.com/j2se/1.4/docs/api/package-list
2) Save package-list to a local directory. Say it's C:\package-list
3) Point to this local copy with the second argument
of -linkoffline, and supply the other arguments you need:
C:> javadoc -linkoffline http://java.sun.com/j2se/1.4/docs/api c:\ -d docs -sourcepath . com.mypackage
Here's more info:
http://java.sun.com/j2se/1.4.1/docs/tooldocs/windows/javadoc.html#linkoffline
The examples may be helpful:
http://java.sun.com/j2se/1.4.1/docs/tooldocs/windows/javadoc.html#examples
Don't know of easier articles.
-Doug Kramer
Javadoc team