A doclet that generates simple HTML files for a particular method (e.g. "main(String[])") of a set of classes.

Doclet command line options:

-d dest-dir
--destination dest-dir
Where to create the HTML files.

The effective file name is:

<dest-dir>/<pkg>/<class>.<method>.html

The default destination directory is ".".

--method method
The signature of the method to document. The default is "main(String[])"; for a doclet, you may want to specify "start(RootDoc)".
--docencoding charset
The charset to use when writing the HTML files. The default is the JVM default charset, "${file.encoding}".
--charset name
The HTML character set for this document.
--doctitle title
The title to place near the top of the output file.
--quiet
Suppresse normal output.
--bottom text
For compatibility with the JAVADOC standard doclet; ignored.
--linkoffline ext-doc-url package-list-loc
For compatibility with the JAVADOC standard doclet; ignored.
--windowtitle title
For compatibility with the JAVADOC standard doclet; ignored.

Supported inline tags:

{@code text}
{@literal text}
{@value package.class#field}
{@link package.class#member label}
{@linkplain package.class#member label}
{@docRoot}
Same as for the standard doclet.
{@constantsof package.enum-type}
{@constantsofplain package.enum-type}
Links to all constants of the designated enum type, separated with ", " (a comma and a space).