langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/HtmlTag.java
changeset 22163 3651128c74eb
parent 22153 f9f06fcca59d
equal deleted inserted replaced
22162:3b3e23e67329 22163:3651128c74eb
    97      * Enum representing the type of HTML element.
    97      * Enum representing the type of HTML element.
    98      */
    98      */
    99     public static enum BlockType {
    99     public static enum BlockType {
   100         BLOCK,
   100         BLOCK,
   101         INLINE,
   101         INLINE,
   102         OTHER;
   102         OTHER
   103     }
   103     }
   104 
   104 
   105     /**
   105     /**
   106      * Enum representing HTML end tag requirement.
   106      * Enum representing HTML end tag requirement.
   107      */
   107      */
   108     public static enum EndTag {
   108     public static enum EndTag {
   109         END,
   109         END,
   110         NOEND;
   110         NOEND
   111     }
   111     }
   112 
   112 
   113     HtmlTag() {
   113     HtmlTag() {
   114         this(BlockType.BLOCK, EndTag.END);
   114         this(BlockType.BLOCK, EndTag.END);
   115     }
   115     }