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

Print this page

        

*** 21,33 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package com.sun.tools.doclets.formats.html.markup; ! import com.sun.tools.javac.util.StringUtils; /** * Enum representing HTML tags. * * <p><b>This is NOT part of any supported API. --- 21,33 ---- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package jdk.javadoc.internal.doclets.formats.html.markup; ! import jdk.javadoc.internal.doclets.toolkit.util.Utils; /** * Enum representing HTML tags. * * <p><b>This is NOT part of any supported API.
*** 129,139 **** HtmlTag(HtmlVersion htmlVersion, BlockType blockType, EndTag endTag ) { this.htmlVersion = htmlVersion; this.blockType = blockType; this.endTag = endTag; ! this.value = StringUtils.toLowerCase(name()); } /** * Returns true if the end tag is required. This is specific to the standard * doclet and does not exactly resemble the W3C specifications. --- 129,139 ---- HtmlTag(HtmlVersion htmlVersion, BlockType blockType, EndTag endTag ) { this.htmlVersion = htmlVersion; this.blockType = blockType; this.endTag = endTag; ! this.value = Utils.toLowerCase(name()); } /** * Returns true if the end tag is required. This is specific to the standard * doclet and does not exactly resemble the W3C specifications.