- java.lang.Object
-
- jdk.javadoc.doclet.StandardDoclet
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface jdk.javadoc.doclet.Doclet
Doclet.Option
-
-
Constructor Summary
Constructors Constructor Description StandardDoclet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Returns a name identifying the doclet.Set<Doclet.Option>
getSupportedOptions()
Returns all the supported options.SourceVersion
getSupportedSourceVersion()
Returns the version of the Java Programming Language supported by this doclet.void
init(Locale locale, Reporter reporter)
Initializes this doclet with the given locale and error reporter.boolean
run(DocletEnvironment docEnv)
The entry point of the doclet.
-
-
-
Method Detail
-
init
public void init(Locale locale, Reporter reporter)
Description copied from interface:Doclet
Initializes this doclet with the given locale and error reporter. This locale will be used by the reporter and the doclet components.
-
getName
public String getName()
Description copied from interface:Doclet
Returns a name identifying the doclet. A name is a simple identifier without white spaces, as defined in The Java™ Language Specification, section 6.2 "Names and Identifiers".
-
getSupportedOptions
public Set<Doclet.Option> getSupportedOptions()
Description copied from interface:Doclet
Returns all the supported options.- Specified by:
getSupportedOptions
in interfaceDoclet
- Returns:
- a set containing all the supported options, an empty set if none
-
getSupportedSourceVersion
public SourceVersion getSupportedSourceVersion()
Description copied from interface:Doclet
Returns the version of the Java Programming Language supported by this doclet.- Specified by:
getSupportedSourceVersion
in interfaceDoclet
- Returns:
- the language version supported by this doclet, usually the latest version
-
run
public boolean run(DocletEnvironment docEnv)
Description copied from interface:Doclet
The entry point of the doclet. Further processing will commence as instructed by this method.
-
-