How include html file ?

Hi to everybody. regarding including html fileI write by myself html file and I want include this file in javadoc documentationcould give me the easiest way to do thatmany many thanksFausto
[231 byte] By [fausto_minottia] at [2007-10-2 9:12:17]
# 1
I want to specify that file.html is referred to a classthat all many thanks
fausto_minottia at 2007-7-16 23:19:20 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2

Create a directory in the source tree named "doc-files" in the package directory of the class, then put file.html in that directory. Then create a link to that file from the class. When you run javadoc, the file will be copied to the -d directory and the link will work.

Look at the example here:

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

-Doug

dhkramera at 2007-7-16 23:19:20 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...