Class AbstractDoclet
java.lang.Object
gw.gosudoc.com.sun.tools.doclets.internal.toolkit.AbstractDoclet
- Direct Known Subclasses:
HtmlDoclet
Deprecated.
An abstract implementation of a Doclet.
This is NOT part of any supported API. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.
- Author:
- Jamie Ho
-
Field Summary
FieldsModifier and TypeFieldDescriptionDeprecated.The global configuration information for this run.protected UtilsDeprecated. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract ConfigurationDeprecated.Create the configuration instance and returns it.protected abstract voidgenerateClassFiles(ClassDoc[] arr, ClassTree classtree) Deprecated.Generate the class documentation.protected voidgenerateClassFiles(RootDoc root, ClassTree classtree) Deprecated.Iterate through all classes and construct documentation for them.protected voidgenerateOtherFiles(RootDoc root, ClassTree classtree) Deprecated.Generate additional documentation that is added to the API documentation.protected abstract voidgeneratePackageFiles(ClassTree classtree) Deprecated.Generate the package documentation.static LanguageVersionDeprecated.Indicate that this doclet supports the 1.5 language features.booleanstartDoclet(RootDoc root) Deprecated.The method that starts the execution of the doclet.
-
Field Details
-
configuration
Deprecated.The global configuration information for this run. -
utils
Deprecated.
-
-
Constructor Details
-
AbstractDoclet
public AbstractDoclet()Deprecated.
-
-
Method Details
-
startDoclet
Deprecated.The method that starts the execution of the doclet.- Parameters:
root- theRootDocthat points to the source to document.- Returns:
- true if the doclet executed without error. False otherwise.
-
languageVersion
Deprecated.Indicate that this doclet supports the 1.5 language features.- Returns:
- JAVA_1_5, indicating that the new features are supported.
-
configuration
Deprecated.Create the configuration instance and returns it.- Returns:
- the configuration of the doclet.
-
generateOtherFiles
Deprecated.Generate additional documentation that is added to the API documentation.- Parameters:
root- the RootDoc of source to document.classtree- the data structure representing the class tree.- Throws:
Exception
-
generatePackageFiles
Deprecated.Generate the package documentation.- Parameters:
classtree- the data structure representing the class tree.- Throws:
Exception
-
generateClassFiles
Deprecated.Generate the class documentation.- Parameters:
classtree- the data structure representing the class tree.
-
generateClassFiles
Deprecated.Iterate through all classes and construct documentation for them.- Parameters:
root- the RootDoc of source to document.classtree- the data structure representing the class tree.
-