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
Felder - 
Konstruktorübersicht
Konstruktoren - 
Methodenübersicht
Modifizierer und TypMethodeBeschreibungprotected abstract voidgenerateClassFiles(SortedSet<TypeElement> arr, ClassTree classTree) Generate the class documentation.protected voidgenerateClassFiles(ClassTree classTree) Iterate through all classes and construct documentation for them.protected abstract voidGenerate the module documentation.protected voidgenerateOtherFiles(ClassTree classTree) Generate additional documentation that is added to the API documentation.protected abstract voidgeneratePackageFiles(ClassTree classTree) Generate the package documentation.abstract BaseConfigurationCreate the configuration instance and returns it.Returns the SourceVersion indicating the features supported by this doclet.booleanrun(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, waitVon 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:
 runin 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:
 getSupportedSourceVersionin 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
 
 -