bpatel@766: /* jjg@1359: * Copyright (c) 2010, 2012, Oracle and/or its affiliates. All rights reserved. bpatel@766: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. bpatel@766: * bpatel@766: * This code is free software; you can redistribute it and/or modify it bpatel@766: * under the terms of the GNU General Public License version 2 only, as bpatel@766: * published by the Free Software Foundation. Oracle designates this bpatel@766: * particular file as subject to the "Classpath" exception as provided bpatel@766: * by Oracle in the LICENSE file that accompanied this code. bpatel@766: * bpatel@766: * This code is distributed in the hope that it will be useful, but WITHOUT bpatel@766: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or bpatel@766: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License bpatel@766: * version 2 for more details (a copy is included in the LICENSE file that bpatel@766: * accompanied this code). bpatel@766: * bpatel@766: * You should have received a copy of the GNU General Public License version bpatel@766: * 2 along with this work; if not, write to the Free Software Foundation, bpatel@766: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. bpatel@766: * bpatel@766: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA bpatel@766: * or visit www.oracle.com if you need additional information or have any bpatel@766: * questions. bpatel@766: */ bpatel@766: bpatel@766: package com.sun.tools.doclets.formats.html.markup; bpatel@766: bpatel@766: /** bpatel@766: * Enum representing HTML styles. The name map to values in the CSS file. bpatel@766: * jjg@1359: *

This is NOT part of any supported API. jjg@1359: * If you write code that depends on this, you do so at your own risk. jjg@1359: * This code and its internal interfaces are subject to change or jjg@1359: * deletion without notice. jjg@1359: * bpatel@766: * @author Bhavesh Patel bpatel@766: */ bpatel@766: public enum HtmlStyle { bpatel@766: aboutLanguage, bpatel@1417: activeTableTab, bpatel@766: altColor, bpatel@766: bar, bpatel@766: block, bpatel@766: blockList, bpatel@766: blockListLast, bpatel@766: bottomNav, bpatel@766: classUseContainer, bpatel@766: colFirst, bpatel@766: colLast, bpatel@766: colOne, bpatel@766: constantValuesContainer, bpatel@766: contentContainer, bpatel@766: description, bpatel@766: details, bpatel@995: docSummary, bpatel@766: header, bpatel@766: horizontal, bpatel@766: footer, bpatel@766: indexContainer, bpatel@766: indexHeader, bpatel@766: inheritance, bpatel@766: legalCopy, bpatel@766: nameValue, bpatel@766: navBarCell1Rev, bpatel@766: navList, bpatel@766: overviewSummary, bpatel@766: packageSummary, bpatel@766: rowColor, bpatel@766: serializedFormContainer, bpatel@766: sourceContainer, bpatel@766: sourceLineNo, bpatel@766: strong, bpatel@766: subNav, bpatel@766: subNavList, bpatel@766: subTitle, bpatel@766: summary, bpatel@995: deprecatedContent, bpatel@766: tabEnd, bpatel@1417: tableTab, bpatel@766: title, bpatel@766: topNav; bpatel@766: }