1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
40
40
/**
41
41
* Enum representing HTML tags.
42
42
*
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,
44
44
* to the extent supported/used by javadoc.
45
- * In time, we may wish to transition javadoc and doclint to using HTML 5.
46
45
*
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} .
48
47
* Eventually, these two should be merged back together, and possibly made
49
48
* public.
50
49
*
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>
52
51
* @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>
54
54
* @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)
57
55
*/
58
56
public enum HtmlTag {
59
57
A (BlockType .INLINE , EndKind .REQUIRED ,
@@ -401,7 +399,7 @@ public boolean accepts(HtmlTag t) {
401
399
/**
402
400
* Enum representing the supportability of HTML element.
403
401
*/
404
- public static enum ElemKind {
402
+ public enum ElemKind {
405
403
OK ,
406
404
INVALID ,
407
405
OBSOLETE ,
@@ -411,7 +409,7 @@ public static enum ElemKind {
411
409
/**
412
410
* Enum representing the type of HTML element.
413
411
*/
414
- public static enum BlockType {
412
+ public enum BlockType {
415
413
BLOCK ,
416
414
INLINE ,
417
415
LIST_ITEM ,
@@ -422,20 +420,20 @@ public static enum BlockType {
422
420
/**
423
421
* Enum representing HTML end tag requirement.
424
422
*/
425
- public static enum EndKind {
423
+ public enum EndKind {
426
424
NONE ,
427
425
OPTIONAL ,
428
426
REQUIRED
429
427
}
430
428
431
- public static enum Flag {
429
+ public enum Flag {
432
430
ACCEPTS_BLOCK ,
433
431
ACCEPTS_INLINE ,
434
432
EXPECT_CONTENT ,
435
433
NO_NEST
436
434
}
437
435
438
- public static enum Attr {
436
+ public enum Attr {
439
437
ABBR ,
440
438
ALIGN ,
441
439
ALINK ,
@@ -532,7 +530,7 @@ public String getText() {
532
530
}
533
531
}
534
532
535
- public static enum AttrKind {
533
+ public enum AttrKind {
536
534
OK ,
537
535
INVALID ,
538
536
OBSOLETE ,
0 commit comments