Package org.jdrupes.mdoclet
Klasse MDoclet
java.lang.Object
org.jdrupes.mdoclet.MDoclet
- Alle implementierten Schnittstellen:
Doclet
The Doclet implementation, which converts the Markdown from the JavaDoc
comments and tags to HTML.
The doclet works by installing wrappers to intercept the
HtmlDoclet
’s calls to access the DocCommentTree
s
(see DocCommentTreeWrapper
). At the root of this interception
is a modified doclet environment (MDocletEnvironment
) that
installs a wrapper around doc trees access.
For some strange reason, the StandardDoclet
does not work
with interface DocletEnvironment
but insists on the instance
being a DocEnvImpl
. Therefore MDocletEnvironment
has
to extend this class which requires to allow module access with
--add-exports=jdk.javadoc/org.jdrupes.mdoclet.internal.tool=ALL-UNNAMED
.
-
Verschachtelte Klassen - Übersicht
Von Schnittstelle geerbte verschachtelte Klassen/Schnittstellen jdk.javadoc.doclet.Doclet
Doclet.Option
-
Feldübersicht
-
Konstruktorübersicht
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibunggetName()
Returns the processor selected by the options.Set
<? extends Doclet.Option> void
boolean
run
(DocletEnvironment environment)
-
Felddetails
-
HIGHLIGHT_JS_HTML
- Siehe auch:
-
-
Konstruktordetails
-
MDoclet
public MDoclet()
-
-
Methodendetails
-
init
-
getName
-
getSupportedOptions
- Angegeben von:
getSupportedOptions
in SchnittstelleDoclet
-
getSupportedSourceVersion
- Angegeben von:
getSupportedSourceVersion
in SchnittstelleDoclet
-
run
-
getProcessor
Returns the processor selected by the options.- Gibt zurück:
- the processor
-