1 /*
   2  * Copyright (c) 2010, 2019, 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     annotations,
  45     arguments,
  46     bar,
  47     block,
  48     blockList,
  49     blockListLast,
  50     bottomNav,
  51     circle,
  52     classUseContainer,
  53     classUses,
  54     colConstructorName,
  55     colDeprecatedItemName,
  56     colFirst,
  57     colLast,
  58     colSecond,
  59     constantsSummary,
  60     constructorDetails,
  61     constructorSummary,
  62     constantDetails,
  63     constantValuesContainer,
  64     contentContainer,
  65     deprecatedLabel,
  66     deprecatedSummary,
  67     deprecationBlock,
  68     deprecationComment,
  69     description,
  70     descfrmTypeLabel,
  71     details,
  72     detail,
  73     docSummary,
  74     emphasizedPhrase,
  75     exceptions,
  76     externalLink,
  77     fieldDetails,
  78     fieldSummary,
  79     fixedNav,
  80     header,
  81     helpSection,
  82     hierarchy,
  83     horizontal,
  84     footer,
  85     implementationLabel,
  86     indexContainer,
  87     indexNav,
  88     inheritance,
  89     inheritedList,
  90     interfaceName,
  91     leftContainer,
  92     leftTop,
  93     leftBottom,
  94     legalCopy,
  95     mainContainer,
  96     memberDetails,
  97     memberName,
  98     memberNameLabel,
  99     memberNameLink,
 100     memberSignature,
 101     memberSummary,
 102     methodDetails,
 103     methodSignature,
 104     methodSummary,
 105     modifiers,
 106     moduleDescription,
 107     moduleLabelInPackage,
 108     moduleLabelInType,
 109     moduleTags,
 110     modulesSummary,
 111     nameValue,
 112     navBarCell1Rev,
 113     navList,
 114     navListSearch,
 115     navPadding,
 116     nestedClassSummary,
 117     overrideSpecifyLabel,
 118     overviewSummary,
 119     packages,
 120     packageDescription,
 121     packageHierarchyLabel,
 122     packageLabelInType,
 123     packagesSummary,
 124     packageUses,
 125     paramLabel,
 126     propertyDetails,
 127     propertySummary,
 128     providesSummary,
 129     requiresSummary,
 130     returnLabel,
 131     returnType,
 132     rightContainer,
 133     rightIframe,
 134     rowColor,
 135     searchTagLink,
 136     searchTagResult,
 137     seeLabel,
 138     serializedFormContainer,
 139     serializedPackageContainer,
 140     serializedClassDetails,
 141     servicesSummary,
 142     simpleTagLabel,
 143     skipNav,
 144     sourceContainer,
 145     sourceLineNo,
 146     subNav,
 147     subNavList,
 148     subTitle,
 149     summary,
 150     tabEnd,
 151     tableTab,
 152     throwsLabel,
 153     title,
 154     topNav,
 155     typeNameLabel,
 156     typeNameLink,
 157     typeParameters,
 158     typeParametersLong,
 159     typeSummary,
 160     useSummary,
 161     usesSummary
 162 }
--- EOF ---