1 /*
2 * Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26 package jdk.javadoc.internal.doclets.formats.html.markup;
27
28 /**
29 * Enum representing HTML styles. The name map to values in the CSS file.
30 *
31 * <p><b>This is NOT part of any supported API.
32 * If you write code that depends on this, you do so at your own risk.
33 * This code and its internal interfaces are subject to change or
34 * deletion without notice.</b>
35 *
36 * @author Bhavesh Patel
37 */
38 public enum HtmlStyle {
39 aboutLanguage,
40 activeTableTab,
41 allClassesContainer,
42 allPackagesContainer,
43 altColor,
44 bar,
45 block,
46 blockList,
47 blockListLast,
48 bottomNav,
49 circle,
50 classUseContainer,
51 classUses,
52 colConstructorName,
53 colDeprecatedItemName,
54 colFirst,
55 colLast,
56 colSecond,
57 constantsSummary,
58 constructorDetails,
59 constructorSummary,
60 constantDetails,
61 constantValuesContainer,
62 contentContainer,
63 deprecatedLabel,
64 deprecatedSummary,
65 deprecationBlock,
66 deprecationComment,
67 description,
68 descfrmTypeLabel,
69 details,
70 detail,
71 docSummary,
72 emphasizedPhrase,
73 externalLink,
74 fieldDetails,
75 fieldSummary,
76 fixedNav,
77 header,
78 helpSection,
79 hierarchy,
80 horizontal,
81 footer,
82 implementationLabel,
83 indexContainer,
84 indexNav,
85 inheritance,
86 inheritedList,
87 interfaceName,
88 leftContainer,
89 leftTop,
90 leftBottom,
91 legalCopy,
92 mainContainer,
93 memberDetails,
94 memberNameLabel,
95 memberNameLink,
96 memberSummary,
97 methodDetails,
98 methodSignature,
99 methodSummary,
100 moduleDescription,
101 moduleLabelInPackage,
102 moduleLabelInType,
103 moduleTags,
104 modulesSummary,
105 nameValue,
106 navBarCell1Rev,
107 navList,
108 navListSearch,
109 navPadding,
110 nestedClassSummary,
111 overrideSpecifyLabel,
112 overviewSummary,
113 packages,
114 packageDescription,
115 packageHierarchyLabel,
116 packageLabelInType,
117 packagesSummary,
118 packageUses,
119 paramLabel,
120 propertyDetails,
121 propertySummary,
122 providesSummary,
123 requiresSummary,
124 returnLabel,
125 rightContainer,
126 rightIframe,
127 rowColor,
128 searchTagLink,
129 searchTagResult,
130 seeLabel,
131 serializedFormContainer,
132 serializedPackageContainer,
133 serializedClassDetails,
134 servicesSummary,
135 simpleTagLabel,
136 skipNav,
137 sourceContainer,
138 sourceLineNo,
139 subNav,
140 subNavList,
141 subTitle,
142 summary,
143 tabEnd,
144 tableTab,
145 throwsLabel,
146 title,
147 topNav,
148 typeNameLabel,
149 typeNameLink,
150 typeSummary,
151 useSummary,
152 usesSummary
153 }
--- EOF ---