HtmlStyle.java revision 3294:9adfb22ff08f
160484Sobrien/*
2130561Sobrien * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
360484Sobrien * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
460484Sobrien *
560484Sobrien * This code is free software; you can redistribute it and/or modify it
660484Sobrien * under the terms of the GNU General Public License version 2 only, as
760484Sobrien * published by the Free Software Foundation.  Oracle designates this
860484Sobrien * particular file as subject to the "Classpath" exception as provided
960484Sobrien * by Oracle in the LICENSE file that accompanied this code.
1060484Sobrien *
1160484Sobrien * This code is distributed in the hope that it will be useful, but WITHOUT
1260484Sobrien * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1360484Sobrien * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1460484Sobrien * version 2 for more details (a copy is included in the LICENSE file that
1560484Sobrien * accompanied this code).
1660484Sobrien *
1760484Sobrien * You should have received a copy of the GNU General Public License version
1860484Sobrien * 2 along with this work; if not, write to the Free Software Foundation,
1960484Sobrien * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2060484Sobrien *
2177298Sobrien * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2260484Sobrien * or visit www.oracle.com if you need additional information or have any
2360484Sobrien * questions.
2460484Sobrien */
2560484Sobrien
2660484Sobrienpackage jdk.javadoc.internal.doclets.formats.html.markup;
2760484Sobrien
2860484Sobrien/**
2960484Sobrien * Enum representing HTML styles. The name map to values in the CSS file.
3060484Sobrien *
3160484Sobrien *  <p><b>This is NOT part of any supported API.
3260484Sobrien *  If you write code that depends on this, you do so at your own risk.
3360484Sobrien *  This code and its internal interfaces are subject to change or
3460484Sobrien *  deletion without notice.</b>
3560484Sobrien *
3660484Sobrien * @author Bhavesh Patel
3760484Sobrien */
3860484Sobrienpublic enum HtmlStyle {
3960484Sobrien    aboutLanguage,
4060484Sobrien    activeTableTab,
4160484Sobrien    altColor,
4260484Sobrien    bar,
4360484Sobrien    block,
4460484Sobrien    blockList,
4560484Sobrien    blockListLast,
4660484Sobrien    bottomNav,
4760484Sobrien    circle,
4860484Sobrien    classUseContainer,
4960484Sobrien    colFirst,
5077298Sobrien    colLast,
5160484Sobrien    colOne,
5277298Sobrien    constantsSummary,
5360484Sobrien    constantValuesContainer,
5460484Sobrien    contentContainer,
5560484Sobrien    deprecatedContent,
5660484Sobrien    deprecatedLabel,
5760484Sobrien    deprecatedSummary,
5877298Sobrien    deprecationComment,
5989857Sobrien    description,
6060484Sobrien    descfrmTypeLabel,
6160484Sobrien    details,
6260484Sobrien    docSummary,
6360484Sobrien    emphasizedPhrase,
6460484Sobrien    fixedNav,
6560484Sobrien    header,
6660484Sobrien    horizontal,
6760484Sobrien    footer,
6860484Sobrien    indexContainer,
6960484Sobrien    indexNav,
7060484Sobrien    inheritance,
7160484Sobrien    interfaceName,
7260484Sobrien    leftContainer,
7360484Sobrien    leftTop,
7460484Sobrien    leftBottom,
7560484Sobrien    legalCopy,
7660484Sobrien    mainContainer,
7760484Sobrien    memberNameLabel,
7860484Sobrien    memberNameLink,
7960484Sobrien    memberSummary,
8060484Sobrien    moduleLabelInClass,
8160484Sobrien    nameValue,
8260484Sobrien    navBarCell1Rev,
8360484Sobrien    navList,
8460484Sobrien    navListSearch,
8589857Sobrien    navPadding,
8689857Sobrien    overrideSpecifyLabel,
8789857Sobrien    overviewSummary,
8889857Sobrien    packageHierarchyLabel,
8989857Sobrien    packageLabelInClass,
9089857Sobrien    paramLabel,
9189857Sobrien    returnLabel,
9289857Sobrien    rightContainer,
9389857Sobrien    rightIframe,
9489857Sobrien    rowColor,
9589857Sobrien    searchTagLink,
9689857Sobrien    seeLabel,
9789857Sobrien    serializedFormContainer,
9889857Sobrien    simpleTagLabel,
9989857Sobrien    skipNav,
10089857Sobrien    sourceContainer,
10189857Sobrien    sourceLineNo,
10289857Sobrien    subNav,
10389857Sobrien    subNavList,
10489857Sobrien    subTitle,
10589857Sobrien    summary,
10689857Sobrien    tabEnd,
10789857Sobrien    tableTab,
10889857Sobrien    throwsLabel,
10989857Sobrien    title,
11089857Sobrien    topNav,
11189857Sobrien    typeNameLabel,
11289857Sobrien    typeNameLink,
11360484Sobrien    typeSummary,
11460484Sobrien    useSummary
11560484Sobrien}
11660484Sobrien