Skip to content

Commit eb0ac86

Browse files
committedApr 2, 2021
8264655: Minor internal doc comment cleanup
Reviewed-by: prappo
1 parent 3991b32 commit eb0ac86

File tree

4 files changed

+15
-17
lines changed

4 files changed

+15
-17
lines changed
 

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/markup/HtmlStyle.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
* or {@link javax.lang.model.element.Element "language model elements"}.
4949
* The usage is made explicit when it is not clear from the surrounding context.
5050
*
51-
* @see <a href="https://html.spec.whatwg.org/#classes>WhatWG: {@code class} attribute</a>
51+
* @see <a href="https://html.spec.whatwg.org/#classes">WhatWG: {@code class} attribute</a>
5252
*/
5353
public enum HtmlStyle {
5454
block,

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/markup/TagName.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* This code and its internal interfaces are subject to change or
3636
* deletion without notice.</b>
3737
*
38-
* @see <a href=""https://html.spec.whatwg.org/multipage/syntax.html#syntax-tag-name>WhatWG: Tag Name</a>
38+
* @see <a href="https://html.spec.whatwg.org/multipage/syntax.html#syntax-tag-name">WhatWG: Tag Name</a>
3939
* @see <a href="https://www.w3.org/TR/html51/syntax.html#tag-name">HTML 5.1: Tag Name</a>
4040
*/
4141
public enum TagName {

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/BaseConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
* Configure the output based on the options. Doclets should sub-class
8585
* BaseConfiguration, to configure and add their own options. This class contains
8686
* all user options which are supported by the standard doclet.
87-
* <p>
87+
*
8888
* <p><b>This is NOT part of any supported API.
8989
* If you write code that depends on this, you do so at your own risk.
9090
* This code and its internal interfaces are subject to change or

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclint/HtmlTag.java

+12-14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2010, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2010, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -40,20 +40,18 @@
4040
/**
4141
* Enum representing HTML tags.
4242
*
43-
* The intent of this class is to embody the semantics of W3C HTML 4.01
43+
* The intent of this class is to embody the semantics of the current HTML standard,
4444
* to the extent supported/used by javadoc.
45-
* In time, we may wish to transition javadoc and doclint to using HTML 5.
4645
*
47-
* This is derivative of com.sun.tools.doclets.formats.html.markup.HtmlTag.
46+
* This class is derivative of {@link jdk.javadoc.internal.doclets.formats.html.markup.TagName}.
4847
* Eventually, these two should be merged back together, and possibly made
4948
* public.
5049
*
51-
* @see <a href="http://www.w3.org/TR/REC-html40/">HTML 4.01 Specification</a>
50+
* @see <a href="https://html.spec.whatwg.org/multipage/">HTML Living Standard</a>
5251
* @see <a href="http://www.w3.org/TR/html5/">HTML 5 Specification</a>
53-
* @see <a href="http://www.w3.org/TR/wai-aria/ ">WAI-ARIA Specification</a>
52+
* @see <a href="http://www.w3.org/TR/REC-html40/">HTML 4.01 Specification</a>
53+
* @see <a href="http://www.w3.org/TR/wai-aria/">WAI-ARIA Specification</a>
5454
* @see <a href="http://www.w3.org/TR/aria-in-html/#recommendations-table">WAI-ARIA Recommendations Table</a>
55-
* @author Bhavesh Patel
56-
* @author Jonathan Gibbons (revised)
5755
*/
5856
public enum HtmlTag {
5957
A(BlockType.INLINE, EndKind.REQUIRED,
@@ -401,7 +399,7 @@ public boolean accepts(HtmlTag t) {
401399
/**
402400
* Enum representing the supportability of HTML element.
403401
*/
404-
public static enum ElemKind {
402+
public enum ElemKind {
405403
OK,
406404
INVALID,
407405
OBSOLETE,
@@ -411,7 +409,7 @@ public static enum ElemKind {
411409
/**
412410
* Enum representing the type of HTML element.
413411
*/
414-
public static enum BlockType {
412+
public enum BlockType {
415413
BLOCK,
416414
INLINE,
417415
LIST_ITEM,
@@ -422,20 +420,20 @@ public static enum BlockType {
422420
/**
423421
* Enum representing HTML end tag requirement.
424422
*/
425-
public static enum EndKind {
423+
public enum EndKind {
426424
NONE,
427425
OPTIONAL,
428426
REQUIRED
429427
}
430428

431-
public static enum Flag {
429+
public enum Flag {
432430
ACCEPTS_BLOCK,
433431
ACCEPTS_INLINE,
434432
EXPECT_CONTENT,
435433
NO_NEST
436434
}
437435

438-
public static enum Attr {
436+
public enum Attr {
439437
ABBR,
440438
ALIGN,
441439
ALINK,
@@ -532,7 +530,7 @@ public String getText() {
532530
}
533531
}
534532

535-
public static enum AttrKind {
533+
public enum AttrKind {
536534
OK,
537535
INVALID,
538536
OBSOLETE,

0 commit comments

Comments
 (0)
Please sign in to comment.