8247382: doclint errors (missing comments) in jdk.compiler and jdk.javadoc

Reviewed-by: darcy
This commit is contained in:
Jonathan Gibbons 2020-06-15 16:05:47 -07:00
parent 898c638b95
commit c55b06a4d5
3 changed files with 9 additions and 0 deletions

View file

@ -138,6 +138,9 @@ public interface DocletEnvironment {
*/
Kind getFileKind(TypeElement type);
/**
* The mode specifying the level of detail of module documentation.
*/
enum ModuleMode {
/** Indicate API level documentation is required */
API,

View file

@ -70,6 +70,10 @@ public class StandardDoclet implements Doclet {
private final HtmlDoclet htmlDoclet;
/**
* Creates an instance of the standard doclet, used to generate HTML-formatted
* documentation.
*/
public StandardDoclet() {
htmlDoclet = new HtmlDoclet(this);
}