src/share/classes/com/sun/tools/doclets/formats/html/markup/HtmlStyle.java

Fri, 18 Oct 2013 16:34:42 -0700

author
bpatel
date
Fri, 18 Oct 2013 16:34:42 -0700
changeset 2147
130b8c0e570e
parent 2084
6e186ca11ec0
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8026567: Use meaningful style names for strong and italic styles.
Reviewed-by: jjg

bpatel@766 1 /*
bpatel@1935 2 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
bpatel@766 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
bpatel@766 4 *
bpatel@766 5 * This code is free software; you can redistribute it and/or modify it
bpatel@766 6 * under the terms of the GNU General Public License version 2 only, as
bpatel@766 7 * published by the Free Software Foundation. Oracle designates this
bpatel@766 8 * particular file as subject to the "Classpath" exception as provided
bpatel@766 9 * by Oracle in the LICENSE file that accompanied this code.
bpatel@766 10 *
bpatel@766 11 * This code is distributed in the hope that it will be useful, but WITHOUT
bpatel@766 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
bpatel@766 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
bpatel@766 14 * version 2 for more details (a copy is included in the LICENSE file that
bpatel@766 15 * accompanied this code).
bpatel@766 16 *
bpatel@766 17 * You should have received a copy of the GNU General Public License version
bpatel@766 18 * 2 along with this work; if not, write to the Free Software Foundation,
bpatel@766 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
bpatel@766 20 *
bpatel@766 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
bpatel@766 22 * or visit www.oracle.com if you need additional information or have any
bpatel@766 23 * questions.
bpatel@766 24 */
bpatel@766 25
bpatel@766 26 package com.sun.tools.doclets.formats.html.markup;
bpatel@766 27
bpatel@766 28 /**
bpatel@766 29 * Enum representing HTML styles. The name map to values in the CSS file.
bpatel@766 30 *
jjg@1359 31 * <p><b>This is NOT part of any supported API.
jjg@1359 32 * If you write code that depends on this, you do so at your own risk.
jjg@1359 33 * This code and its internal interfaces are subject to change or
jjg@1359 34 * deletion without notice.</b>
jjg@1359 35 *
bpatel@766 36 * @author Bhavesh Patel
bpatel@766 37 */
bpatel@766 38 public enum HtmlStyle {
bpatel@766 39 aboutLanguage,
bpatel@1417 40 activeTableTab,
bpatel@766 41 altColor,
bpatel@766 42 bar,
bpatel@766 43 block,
bpatel@766 44 blockList,
bpatel@766 45 blockListLast,
bpatel@766 46 bottomNav,
bpatel@766 47 classUseContainer,
bpatel@766 48 colFirst,
bpatel@766 49 colLast,
bpatel@766 50 colOne,
bpatel@2084 51 constantsSummary,
bpatel@766 52 constantValuesContainer,
bpatel@766 53 contentContainer,
bpatel@2084 54 deprecatedContent,
bpatel@2147 55 deprecatedLabel,
bpatel@2084 56 deprecatedSummary,
bpatel@2147 57 deprecationComment,
bpatel@766 58 description,
bpatel@2147 59 descfrmTypeLabel,
bpatel@766 60 details,
bpatel@995 61 docSummary,
bpatel@2147 62 emphasizedPhrase,
bpatel@766 63 header,
bpatel@766 64 horizontal,
bpatel@766 65 footer,
bpatel@766 66 indexContainer,
bpatel@766 67 indexHeader,
bpatel@766 68 inheritance,
bpatel@2147 69 interfaceName,
bpatel@766 70 legalCopy,
bpatel@2147 71 memberNameLabel,
bpatel@2147 72 memberNameLink,
bpatel@2084 73 memberSummary,
bpatel@766 74 nameValue,
bpatel@766 75 navBarCell1Rev,
bpatel@766 76 navList,
bpatel@2147 77 overrideSpecifyLabel,
bpatel@766 78 overviewSummary,
bpatel@2147 79 packageHierarchyLabel,
bpatel@2147 80 paramLabel,
bpatel@2147 81 returnLabel,
bpatel@766 82 rowColor,
bpatel@2147 83 seeLabel,
bpatel@766 84 serializedFormContainer,
bpatel@2147 85 simpleTagLabel,
bpatel@1995 86 skipNav,
bpatel@766 87 sourceContainer,
bpatel@766 88 sourceLineNo,
bpatel@766 89 subNav,
bpatel@766 90 subNavList,
bpatel@766 91 subTitle,
bpatel@766 92 summary,
bpatel@766 93 tabEnd,
bpatel@1417 94 tableTab,
bpatel@2147 95 throwsLabel,
bpatel@766 96 title,
bpatel@2084 97 topNav,
bpatel@2147 98 typeNameLabel,
bpatel@2147 99 typeNameLink,
bpatel@2084 100 typeSummary,
bpatel@2084 101 useSummary;
bpatel@766 102 }

mercurial