@@ -129,7 +129,6 @@ public enum HtmlStyle {
129
129
serializedClassDetails ,
130
130
servicesSummary ,
131
131
skipNav ,
132
- source ,
133
132
sourceContainer ,
134
133
sourceLineNo ,
135
134
subNav ,
@@ -148,7 +147,115 @@ public enum HtmlStyle {
148
147
typeSummary ,
149
148
useSummary ,
150
149
usesSummary ,
151
- verticalSeparator ;
150
+ verticalSeparator ,
151
+
152
+ // The following constants are used for the class of the {@code <body>} element
153
+ // for the corresponding pages.
154
+
155
+ /**
156
+ * The class of the {@code body} element for the "All Classes" index page.
157
+ */
158
+ allClassesIndexPage ,
159
+
160
+ /**
161
+ * The class of the {@code body} element for the "All Packages" index page.
162
+ */
163
+ allPackagesIndexPage ,
164
+
165
+ /**
166
+ * The class of the {@code body} element for a class-declaration page.
167
+ */
168
+ classDeclarationPage ,
169
+
170
+ /**
171
+ * The class of the {@code body} element for a class-use page.
172
+ */
173
+ classUsePage ,
174
+
175
+ /**
176
+ * The class of the {@code body} element for the constants-summary page.
177
+ */
178
+ constantsSummaryPage ,
179
+
180
+ /**
181
+ * The class of the {@code body} element for the page listing any deprecated items.
182
+ */
183
+ deprecatedListPage ,
184
+
185
+ /**
186
+ * The class of the {@code body} element for a "doc-file" page..
187
+ */
188
+ docFilePage ,
189
+
190
+ /**
191
+ * The class of the {@code body} element for the "help" page.
192
+ */
193
+ helpPage ,
194
+
195
+ /**
196
+ * The class of the {@code body} element for the top-level redirect page.
197
+ */
198
+ indexRedirectPage ,
199
+
200
+ /**
201
+ * The class of the {@code body} element for a module-declaration page.
202
+ */
203
+ moduleDeclarationPage ,
204
+
205
+ /**
206
+ * The class of the {@code body} element for the module-index page.
207
+ */
208
+ moduleIndexPage ,
209
+
210
+ /**
211
+ * The class of the {@code body} element for a package-declaration page.
212
+ */
213
+ packageDeclarationPage ,
214
+
215
+ /**
216
+ * The class of the {@code body} element for the package-index page.
217
+ */
218
+ packageIndexPage ,
219
+
220
+ /**
221
+ * The class of the {@code body} element for the page for the package hierarchy.
222
+ */
223
+ packageTreePage ,
224
+
225
+ /**
226
+ * The class of the {@code body} element for a package-use page.
227
+ */
228
+ packageUsePage ,
229
+
230
+ /**
231
+ * The class of the {@code body} element for the serialized-forms page.
232
+ */
233
+ serializedFormPage ,
234
+
235
+ /**
236
+ * The class of the {@code body} element for the full single index page.
237
+ */
238
+ singleIndexPage ,
239
+
240
+ /**
241
+ * The class of the {@code body} element for a page with the source code for a class.
242
+ */
243
+ sourcePage ,
244
+
245
+ /**
246
+ * The class of the {@code body} element for a page in a "split index".
247
+ */
248
+ splitIndexPage ,
249
+
250
+ /**
251
+ * The class of the {@code body} element for the system-properties page.
252
+ */
253
+ systemPropertiesPage ,
254
+
255
+ /**
256
+ * The class of the {@code body} element for the page for the class hierarchy.
257
+ */
258
+ treePage ;
152
259
153
260
private final String cssName ;
154
261
0 commit comments