bpatel@766: /* bpatel@766: * Copyright (c) 2010, 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: import com.sun.tools.doclets.internal.toolkit.Content; bpatel@766: bpatel@766: /** bpatel@766: * Stores constants for Html Doclet. bpatel@766: * bpatel@766: * @author Bhavesh Patel bpatel@766: */ bpatel@766: public class HtmlConstants { bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of top navigation bar. bpatel@766: */ bpatel@766: public static final Content START_OF_TOP_NAVBAR = bpatel@766: new Comment("========= START OF TOP NAVBAR ======="); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of bottom navigation bar. bpatel@766: */ bpatel@766: public static final Content START_OF_BOTTOM_NAVBAR = bpatel@766: new Comment("======= START OF BOTTOM NAVBAR ======"); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify end of top navigation bar. bpatel@766: */ bpatel@766: public static final Content END_OF_TOP_NAVBAR = bpatel@766: new Comment("========= END OF TOP NAVBAR ========="); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify end of bottom navigation bar. bpatel@766: */ bpatel@766: public static final Content END_OF_BOTTOM_NAVBAR = bpatel@766: new Comment("======== END OF BOTTOM NAVBAR ======="); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of class data. bpatel@766: */ bpatel@766: public static final Content START_OF_CLASS_DATA = bpatel@766: new Comment("======== START OF CLASS DATA ========"); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify end of class data. bpatel@766: */ bpatel@766: public static final Content END_OF_CLASS_DATA = bpatel@766: new Comment("========= END OF CLASS DATA ========="); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of nested class summary. bpatel@766: */ bpatel@766: public static final Content START_OF_NESTED_CLASS_SUMMARY = bpatel@766: new Comment("======== NESTED CLASS SUMMARY ========"); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of annotation type optional member summary. bpatel@766: */ bpatel@766: public static final Content START_OF_ANNOTATION_TYPE_OPTIONAL_MEMBER_SUMMARY = bpatel@766: new Comment("=========== ANNOTATION TYPE OPTIONAL MEMBER SUMMARY ==========="); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of annotation type required member summary. bpatel@766: */ bpatel@766: public static final Content START_OF_ANNOTATION_TYPE_REQUIRED_MEMBER_SUMMARY = bpatel@766: new Comment("=========== ANNOTATION TYPE REQUIRED MEMBER SUMMARY ==========="); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of constructor summary. bpatel@766: */ bpatel@766: public static final Content START_OF_CONSTRUCTOR_SUMMARY = bpatel@766: new Comment("======== CONSTRUCTOR SUMMARY ========"); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of enum constants summary. bpatel@766: */ bpatel@766: public static final Content START_OF_ENUM_CONSTANT_SUMMARY = bpatel@766: new Comment("=========== ENUM CONSTANT SUMMARY ==========="); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of field summary. bpatel@766: */ bpatel@766: public static final Content START_OF_FIELD_SUMMARY = bpatel@766: new Comment("=========== FIELD SUMMARY ==========="); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of method summary. bpatel@766: */ bpatel@766: public static final Content START_OF_METHOD_SUMMARY = bpatel@766: new Comment("========== METHOD SUMMARY ==========="); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of annotation type details. bpatel@766: */ bpatel@766: public static final Content START_OF_ANNOTATION_TYPE_DETAILS = bpatel@766: new Comment("============ ANNOTATION TYPE MEMBER DETAIL ==========="); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of method details. bpatel@766: */ bpatel@766: public static final Content START_OF_METHOD_DETAILS = bpatel@766: new Comment("============ METHOD DETAIL =========="); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of field details. bpatel@766: */ bpatel@766: public static final Content START_OF_FIELD_DETAILS = bpatel@766: new Comment("============ FIELD DETAIL ==========="); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of constructor details. bpatel@766: */ bpatel@766: public static final Content START_OF_CONSTRUCTOR_DETAILS = bpatel@766: new Comment("========= CONSTRUCTOR DETAIL ========"); bpatel@766: bpatel@766: /** bpatel@766: * Marker to identify start of enum constants details. bpatel@766: */ bpatel@766: public static final Content START_OF_ENUM_CONSTANT_DETAILS = bpatel@766: new Comment("============ ENUM CONSTANT DETAIL ==========="); bpatel@766: bpatel@766: /** bpatel@766: * Html tag for the page title heading. bpatel@766: */ bpatel@766: public static final HtmlTag TITLE_HEADING = HtmlTag.H1; bpatel@766: bpatel@766: /** bpatel@766: * Html tag for the class page title heading. bpatel@766: */ bpatel@766: public static final HtmlTag CLASS_PAGE_HEADING = HtmlTag.H2; bpatel@766: bpatel@766: /** bpatel@766: * Html tag for the content heading. bpatel@766: */ bpatel@766: public static final HtmlTag CONTENT_HEADING = HtmlTag.H2; bpatel@766: bpatel@766: /** bpatel@766: * Html tag for the package name heading. bpatel@766: */ bpatel@766: public static final HtmlTag PACKAGE_HEADING = HtmlTag.H2; bpatel@766: bpatel@766: /** bpatel@766: * Html tag for the member summary heading. bpatel@766: */ bpatel@766: public static final HtmlTag SUMMARY_HEADING = HtmlTag.H3; bpatel@766: bpatel@766: /** bpatel@766: * Html tag for the inherited member summary heading. bpatel@766: */ bpatel@766: public static final HtmlTag INHERITED_SUMMARY_HEADING = HtmlTag.H3; bpatel@766: bpatel@766: /** bpatel@766: * Html tag for the member details heading. bpatel@766: */ bpatel@766: public static final HtmlTag DETAILS_HEADING = HtmlTag.H3; bpatel@766: bpatel@766: /** bpatel@766: * Html tag for the serialized member heading. bpatel@766: */ bpatel@766: public static final HtmlTag SERIALIZED_MEMBER_HEADING = HtmlTag.H3; bpatel@766: bpatel@766: /** bpatel@766: * Html tag for the member heading. bpatel@766: */ bpatel@766: public static final HtmlTag MEMBER_HEADING = HtmlTag.H4; bpatel@766: }