I'm trying to sharpen my skills for code documentation and I'm planning to put my findings in a blog post about writing good code and api level documentation.
One thing I've learned to love are package level JavaDocs which allow you to describe a package independent of a specific class.
My question really is four questions related to this topic:
Do you think they add value to the overall documentation? Do you think they are something worth to spend time on or do you never really look at them? If not, what do you do instead?
What do you consider important for a class level javadoc? I consider them as an introduction into the classes in the given package, explaining what the overall goal of the classes is, pointing out the landmarks and how they are supposed to work together. What do you think is important, unimportant, helpful, etc?
Formatting! I'm not a big fan of putting HTML in the JavaDocs, but as far as I know it is the only option. How do you hold it? Minimal formatting without any HTML? Beautifully typeset comments using lots of markup?
Any recommendations for good and useful Doclets? I use apiviz a lot and it's a neat tool. I'd love to see more like this. Suggestions?
Feel free to answer any of the four points (or all of them). Looking forward to your feedback. Thanks!