Javadoc Look & Feel

Hi,Anyone knows how to improve javadoc Look&Feel?CSS is the solution?, where can i get a .css for javadoc?Thanks
[144 byte] By [dddddddddsssssssssda] at [2007-10-2 5:45:43]
# 1
Javadoc creates the CSS file, or you can include one in a magic location. http://java.sun.com/j2se/1.5.0/docs/guide/javadoc/index.html http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/javadoc.html
mlka at 2007-7-16 1:55:34 > top of Java-index,Java Essentials,New To Java...
# 2

You can probably do a lot by writing your own css file (I'm sure that the JavaDoc documentation mentions how to include your own), you could also write a custom doclet (hint: google for that term) to generate different output.

But keep in mind that any improvements you could make will probably come at the cost that your JavaDoc will not look like all the other JavaDoc out there. Don't underestimate that, it's a major drawback, because people are used to the look and feel of JavaDoc. Just look how minor the changes to the default look were since 1.3 (or even 1.2? can't remember when they did the switch with the frames).

JoachimSauera at 2007-7-16 1:55:34 > top of Java-index,Java Essentials,New To Java...
# 3
Also, be aware that "look and feel" is a Swing term, and has no practical application to the appearance of Javadocs. As the other replies indicate, the easiest way to change the Javadoc appearance is to write your own style sheet (e.g., with corporate logos & colors, etc.)
Dick_Adamsa at 2007-7-16 1:55:34 > top of Java-index,Java Essentials,New To Java...