Klasse AbstractDoclet
java.lang.Object
org.jdrupes.mdoclet.internal.doclets.toolkit.AbstractDoclet
- Alle implementierten Schnittstellen:
Doclet
- Bekannte direkte Unterklassen:
HtmlDoclet
An abstract implementation of a Doclet.
-
Verschachtelte Klassen - Übersicht
Von Schnittstelle geerbte verschachtelte Klassen/Schnittstellen jdk.javadoc.doclet.Doclet
Doclet.Option
-
Feldübersicht
-
Konstruktorübersicht
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungprotected abstract void
generateClassFiles
(SortedSet<TypeElement> arr, ClassTree classTree) Generate the class documentation.protected void
generateClassFiles
(ClassTree classTree) Iterate through all classes and construct documentation for them.protected abstract void
Generate the module documentation.protected void
generateOtherFiles
(ClassTree classTree) Generate additional documentation that is added to the API documentation.protected abstract void
generatePackageFiles
(ClassTree classTree) Generate the package documentation.abstract BaseConfiguration
Create the configuration instance and returns it.Returns the SourceVersion indicating the features supported by this doclet.boolean
run
(DocletEnvironment docEnv) The method that starts the execution of the doclet.Von Klasse geerbte Methoden java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Von Schnittstelle geerbte Methoden jdk.javadoc.doclet.Doclet
getName, getSupportedOptions, init
-
Felddetails
-
messages
-
utils
-
-
Konstruktordetails
-
AbstractDoclet
public AbstractDoclet()
-
-
Methodendetails
-
run
The method that starts the execution of the doclet.- Angegeben von:
run
in SchnittstelleDoclet
- Parameter:
docEnv
- theDocletEnvironment
.- Gibt zurück:
- true if the doclet executed without error. False otherwise.
-
getResourceKeyMapper
-
getSupportedSourceVersion
Returns the SourceVersion indicating the features supported by this doclet.- Angegeben von:
getSupportedSourceVersion
in SchnittstelleDoclet
- Gibt zurück:
- SourceVersion
-
getConfiguration
Create the configuration instance and returns it.- Gibt zurück:
- the configuration of the doclet.
-
generateOtherFiles
Generate additional documentation that is added to the API documentation.- Parameter:
classTree
- the data structure representing the class tree- Löst aus:
DocletException
- if there is a problem while generating the documentation
-
generateModuleFiles
Generate the module documentation.- Löst aus:
DocletException
- if there is a problem while generating the documentation
-
generatePackageFiles
Generate the package documentation.- Parameter:
classTree
- the data structure representing the class tree- Löst aus:
DocletException
- if there is a problem while generating the documentation
-
generateClassFiles
protected abstract void generateClassFiles(SortedSet<TypeElement> arr, ClassTree classTree) throws DocletException Generate the class documentation.- Parameter:
arr
- the set of types to be documentedclassTree
- the data structure representing the class tree- Löst aus:
DocletException
- if there is a problem while generating the documentation
-
generateClassFiles
Iterate through all classes and construct documentation for them.- Parameter:
classTree
- the data structure representing the class tree- Löst aus:
DocletException
- if there is a problem while generating the documentation
-