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

Mon, 02 May 2011 02:13:02 -0700

author
bpatel
date
Mon, 02 May 2011 02:13:02 -0700
changeset 995
62bc3775d5bb
parent 766
90af8d87741f
child 1359
25e14ad23cef
permissions
-rw-r--r--

6492694: @deprecated tag doesn't work in package-info files.
Reviewed-by: jjg

bpatel@766 1 /*
bpatel@995 2 * Copyright (c) 2010, 2011, 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 *
bpatel@766 31 * @author Bhavesh Patel
bpatel@766 32 */
bpatel@766 33 public enum HtmlStyle {
bpatel@766 34 aboutLanguage,
bpatel@766 35 altColor,
bpatel@766 36 bar,
bpatel@766 37 block,
bpatel@766 38 blockList,
bpatel@766 39 blockListLast,
bpatel@766 40 bottomNav,
bpatel@766 41 classUseContainer,
bpatel@766 42 colFirst,
bpatel@766 43 colLast,
bpatel@766 44 colOne,
bpatel@766 45 constantValuesContainer,
bpatel@766 46 contentContainer,
bpatel@766 47 description,
bpatel@766 48 details,
bpatel@995 49 docSummary,
bpatel@766 50 header,
bpatel@766 51 horizontal,
bpatel@766 52 footer,
bpatel@766 53 indexContainer,
bpatel@766 54 indexHeader,
bpatel@766 55 inheritance,
bpatel@766 56 legalCopy,
bpatel@766 57 nameValue,
bpatel@766 58 navBarCell1Rev,
bpatel@766 59 navList,
bpatel@766 60 overviewSummary,
bpatel@766 61 packageSummary,
bpatel@766 62 rowColor,
bpatel@766 63 serializedFormContainer,
bpatel@766 64 sourceContainer,
bpatel@766 65 sourceLineNo,
bpatel@766 66 strong,
bpatel@766 67 subNav,
bpatel@766 68 subNavList,
bpatel@766 69 subTitle,
bpatel@766 70 summary,
bpatel@995 71 deprecatedContent,
bpatel@766 72 tabEnd,
bpatel@766 73 title,
bpatel@766 74 topNav;
bpatel@766 75 }

mercurial