different footer for every package or for every classes

Hi!

1.How can I specify in javadoc that I want a different footer for every package or for every classes?

2.how can I told to javadoc that I have external library used in my project (for providing javadoc comments for for these libraries )?

I used an ant build file for generating javadoc API documentation for my packages.

Thanks,

Florin.

[387 byte] By [SuciuF] at [2007-9-26 6:30:20]
# 1

1. Specifying a different footer for every package or class is not available

(unless you modify the standard doclet).

2. To generate documentation for external libraries, you must first have the

source code to the external libraries. Then simply pass in the package names,

using -classpath to point to them.

You can also use -link to link to previously-generated javadoc documentation.

-Doug Kramer

Javadoc team

dkramer at 2007-7-1 15:38:50 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
BTW, the MIF Doclet does give you a header with a variablethat automatically updates for each package, class and method.It generates MIF, FrameMaker and PDF (but not HTML). http://java.sun.com/javadoc/mifdoclet-Doug
dkramer at 2007-7-1 15:38:50 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...