I've playing with various java documenting techniques (different params on the javadoc command, doxygen, doclets, etc) but I can't seem to find what I am looking for...
I'd like to be able to generate a simple html page for each java source file from the javadoc comments. I don't need treeviews, frames, excessive decorations, etc.
Ideally, given source file A.java I would like A.html as the only generated file based on the javadoc comments.
I'm not opposed to writing something myself, but it really seems like I'd be reinventing the wheel here - is there something out there that has such functionality? Perhaps I missed some detail when playing with javadoc, doxygen & doclets? Bonus if any such fitting technology has an existing maven plugin.
An example listing of such files\folders that I do not want:
- allclasses-frame.html
- allclasses-noframe.html
- constant-values.html
- deprecated-list.html
- help-doc.html
- index-all.html
- index.html
- overview-tree.html
- package-list
- resources
- stylesheet.css
TIA