I'd like to create HTML documentation for a Java class library that includes
programming guide information - beyond just a class reference
code examples in the reference doc
collapsible regions
I want it to look well-styled. Something like this:
I think that Javadoc exposes a doclet API that allows other parties to provide doc g...
Has anyone used XHTML Doclet, and can you provide some hints as to how to get it to work successfully?
I run it like this:
\sunjdk\bin\javadoc -doclet net.sourceforge.xhtmldoclet.Doclet
-docletpath c:\sw\java\XHTML_Doclet_0.4.jar -d <output>
[class files here]
(all on one line)
When I run it I get this:
javadoc...
I am trying to edit a class by parsing it, adding some information to it and then writing it back. I was wondering if there is a tool (similar to something like Doclet (well that uses that same API as it seems to have what I am looking for)) that could accomplish this task?
By this I mean that I would like to take a java source file, lo...