langtools/src/share/classes/com/sun/tools/doclets/formats/html/AbstractIndexWriter.java
author ksrini
Sun, 15 Jun 2014 08:41:57 -0700
changeset 25454 376a52c9540c
parent 22159 682da512ec17
permissions -rw-r--r--
8039028: [javadoc] refactor the usage of Util.java Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
25454
376a52c9540c 8039028: [javadoc] refactor the usage of Util.java
ksrini
parents: 22159
diff changeset
     2
 * Copyright (c) 1998, 2014, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2216
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2216
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2216
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2216
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2216
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package com.sun.tools.doclets.formats.html;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1789
diff changeset
    28
import java.io.*;
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1789
diff changeset
    29
import java.util.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import com.sun.javadoc.*;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    32
import com.sun.tools.doclets.formats.html.markup.*;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    33
import com.sun.tools.doclets.internal.toolkit.*;
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 7681
diff changeset
    34
import com.sun.tools.doclets.internal.toolkit.util.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 * Generate Index for all the Member Names with Indexing in
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 * Unicode Order. This class is a base class for {@link SingleIndexWriter} and
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 * {@link SplitIndexWriter}. It uses the functionality from
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 * {@link HtmlDocletWriter} to generate the Index Contents.
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 *
14260
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    42
 *  <p><b>This is NOT part of any supported API.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    43
 *  If you write code that depends on this, you do so at your own risk.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    44
 *  This code and its internal interfaces are subject to change or
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    45
 *  deletion without notice.</b>
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    46
 *
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
 * @see    IndexBuilder
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
 * @author Atul M Dambalkar
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    49
 * @author Bhavesh Patel (Modified)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
public class AbstractIndexWriter extends HtmlDocletWriter {
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
     * The index of all the members with unicode character.
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
    protected IndexBuilder indexbuilder;
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
    /**
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14260
diff changeset
    59
     * This constructor will be used by {@link SplitIndexWriter}. Initializes
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
     * path to this file and relative path from this file.
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
     *
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14260
diff changeset
    62
     * @param configuration  The current configuration
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
     * @param path       Path to the file which is getting generated.
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
     * @param indexbuilder Unicode based Index from {@link IndexBuilder}
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
    protected AbstractIndexWriter(ConfigurationImpl configuration,
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14260
diff changeset
    67
                                  DocPath path,
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14260
diff changeset
    68
                                  IndexBuilder indexbuilder)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
                                  throws IOException {
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14260
diff changeset
    70
        super(configuration, path);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
        this.indexbuilder = indexbuilder;
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    75
     * Get the index label for navigation bar.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    76
     *
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    77
     * @return a content tree for the tree label
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
     */
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    79
    protected Content getNavLinkIndex() {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    80
        Content li = HtmlTree.LI(HtmlStyle.navBarCell1Rev, indexLabel);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    81
        return li;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    85
     * Add the member information for the unicode character along with the
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
     * list of the members.
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
     *
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    88
     * @param unicode Unicode for which member list information to be generated
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    89
     * @param memberlist List of members for the unicode character
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    90
     * @param contentTree the content tree to which the information will be added
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
     */
21008
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
    92
    protected void addContents(Character uc, List<? extends Doc> memberlist,
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    93
            Content contentTree) {
21008
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
    94
        String unicode = uc.toString();
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
    95
        contentTree.addContent(getMarkerAnchorForIndex(unicode));
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
    96
        Content headContent = new StringContent(unicode);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    97
        Content heading = HtmlTree.HEADING(HtmlConstants.CONTENT_HEADING, false,
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    98
                HtmlStyle.title, headContent);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    99
        contentTree.addContent(heading);
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1789
diff changeset
   100
        int memberListSize = memberlist.size();
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1789
diff changeset
   101
        // Display the list only if there are elements to be displayed.
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1789
diff changeset
   102
        if (memberListSize > 0) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   103
            Content dl = new HtmlTree(HtmlTag.DL);
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 21478
diff changeset
   104
            for (Doc element : memberlist) {
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1789
diff changeset
   105
                if (element instanceof MemberDoc) {
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 21478
diff changeset
   106
                    addDescription((MemberDoc) element, dl);
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1789
diff changeset
   107
                } else if (element instanceof ClassDoc) {
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 21478
diff changeset
   108
                    addDescription((ClassDoc) element, dl);
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1789
diff changeset
   109
                } else if (element instanceof PackageDoc) {
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 21478
diff changeset
   110
                    addDescription((PackageDoc) element, dl);
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1789
diff changeset
   111
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
            }
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   113
            contentTree.addContent(dl);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   118
     * Add one line summary comment for the package.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
     *
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   120
     * @param pkg the package to be documented
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   121
     * @param dlTree the content tree to which the description will be added
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
     */
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   123
    protected void addDescription(PackageDoc pkg, Content dlTree) {
25454
376a52c9540c 8039028: [javadoc] refactor the usage of Util.java
ksrini
parents: 22159
diff changeset
   124
        Content link = getPackageLink(pkg, new StringContent(utils.getPackageName(pkg)));
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   125
        Content dt = HtmlTree.DT(link);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   126
        dt.addContent(" - ");
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   127
        dt.addContent(getResource("doclet.package"));
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   128
        dt.addContent(" " + pkg.name());
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   129
        dlTree.addContent(dt);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   130
        Content dd = new HtmlTree(HtmlTag.DD);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   131
        addSummaryComment(pkg, dd);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   132
        dlTree.addContent(dd);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   136
     * Add one line summary comment for the class.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
     *
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   138
     * @param cd the class being documented
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   139
     * @param dlTree the content tree to which the description will be added
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
     */
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   141
    protected void addDescription(ClassDoc cd, Content dlTree) {
17559
87c28ee29329 8011642: Remove LinkOutput in favor of direct use of Content
jjg
parents: 17558
diff changeset
   142
        Content link = getLink(new LinkInfoImpl(configuration,
17561
9f3505f35da9 8011651: simplify LinkInfoImpl API
jjg
parents: 17560
diff changeset
   143
                        LinkInfoImpl.Kind.INDEX, cd).strong(true));
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   144
        Content dt = HtmlTree.DT(link);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   145
        dt.addContent(" - ");
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   146
        addClassInfo(cd, dt);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   147
        dlTree.addContent(dt);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   148
        Content dd = new HtmlTree(HtmlTag.DD);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   149
        addComment(cd, dd);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   150
        dlTree.addContent(dd);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
    /**
17558
eee4ccf66cfd 8010440: Replace int constants in LinkInfoImpl with enum
jjg
parents: 14542
diff changeset
   154
     * Add the classkind (class, interface, exception), error of the class
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
     * passed.
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
     *
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   157
     * @param cd the class being documented
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   158
     * @param contentTree the content tree to which the class info will be added
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
     */
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   160
    protected void addClassInfo(ClassDoc cd, Content contentTree) {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   161
        contentTree.addContent(getResource("doclet.in",
25454
376a52c9540c 8039028: [javadoc] refactor the usage of Util.java
ksrini
parents: 22159
diff changeset
   162
                utils.getTypeName(configuration, cd, false),
17563
e8ddeb9bd17c 8011668: Allow HTMLWriter.getResource to take Content args
jjg
parents: 17561
diff changeset
   163
                getPackageLink(cd.containingPackage(),
25454
376a52c9540c 8039028: [javadoc] refactor the usage of Util.java
ksrini
parents: 22159
diff changeset
   164
                    utils.getPackageName(cd.containingPackage()))
17563
e8ddeb9bd17c 8011668: Allow HTMLWriter.getResource to take Content args
jjg
parents: 17561
diff changeset
   165
                ));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   169
     * Add description for Class, Field, Method or Constructor.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
     *
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   171
     * @param member MemberDoc for the member of the Class Kind
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   172
     * @param dlTree the content tree to which the description will be added
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
     */
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   174
    protected void addDescription(MemberDoc member, Content dlTree) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
        String name = (member instanceof ExecutableMemberDoc)?
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
            member.name() + ((ExecutableMemberDoc)member).flatSignature() :
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
            member.name();
21478
fa4c7cda1b41 8026567: Use meaningful style names for strong and italic styles.
bpatel
parents: 21008
diff changeset
   178
        Content span = HtmlTree.SPAN(HtmlStyle.memberNameLink,
17558
eee4ccf66cfd 8010440: Replace int constants in LinkInfoImpl with enum
jjg
parents: 14542
diff changeset
   179
                getDocLink(LinkInfoImpl.Kind.INDEX, member, name));
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   180
        Content dt = HtmlTree.DT(span);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   181
        dt.addContent(" - ");
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   182
        addMemberDesc(member, dt);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   183
        dlTree.addContent(dt);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   184
        Content dd = new HtmlTree(HtmlTag.DD);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   185
        addComment(member, dd);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   186
        dlTree.addContent(dd);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   190
     * Add comment for each element in the index. If the element is deprecated
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
     * and it has a @deprecated tag, use that comment. Else if the containing
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
     * class for this element is deprecated, then add the word "Deprecated." at
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
     * the start and then print the normal comment.
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
     *
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   195
     * @param element Index element
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   196
     * @param contentTree the content tree to which the comment will be added
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
     */
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   198
    protected void addComment(ProgramElementDoc element, Content contentTree) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
        Tag[] tags;
21478
fa4c7cda1b41 8026567: Use meaningful style names for strong and italic styles.
bpatel
parents: 21008
diff changeset
   200
        Content span = HtmlTree.SPAN(HtmlStyle.deprecatedLabel, deprecatedPhrase);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   201
        HtmlTree div = new HtmlTree(HtmlTag.DIV);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   202
        div.addStyle(HtmlStyle.block);
25454
376a52c9540c 8039028: [javadoc] refactor the usage of Util.java
ksrini
parents: 22159
diff changeset
   203
        if (utils.isDeprecated(element)) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   204
            div.addContent(span);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
            if ((tags = element.tags("deprecated")).length > 0)
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   206
                addInlineDeprecatedComment(element, tags[0], div);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   207
            contentTree.addContent(div);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
            ClassDoc cont = element.containingClass();
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
            while (cont != null) {
25454
376a52c9540c 8039028: [javadoc] refactor the usage of Util.java
ksrini
parents: 22159
diff changeset
   211
                if (utils.isDeprecated(cont)) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   212
                    div.addContent(span);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   213
                    contentTree.addContent(div);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
                    break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
                cont = cont.containingClass();
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
            }
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   218
            addSummaryComment(element, contentTree);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   223
     * Add description about the Static Varible/Method/Constructor for a
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
     * member.
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
     *
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   226
     * @param member MemberDoc for the member within the Class Kind
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   227
     * @param contentTree the content tree to which the member description will be added
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
     */
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   229
    protected void addMemberDesc(MemberDoc member, Content contentTree) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
        ClassDoc containing = member.containingClass();
25454
376a52c9540c 8039028: [javadoc] refactor the usage of Util.java
ksrini
parents: 22159
diff changeset
   231
        String classdesc = utils.getTypeName(
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   232
                configuration, containing, true) + " ";
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
        if (member.isField()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
            if (member.isStatic()) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   235
                contentTree.addContent(
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   236
                        getResource("doclet.Static_variable_in", classdesc));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
            } else {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   238
                contentTree.addContent(
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   239
                        getResource("doclet.Variable_in", classdesc));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
        } else if (member.isConstructor()) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   242
            contentTree.addContent(
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   243
                    getResource("doclet.Constructor_for", classdesc));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
        } else if (member.isMethod()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
            if (member.isStatic()) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   246
                contentTree.addContent(
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   247
                        getResource("doclet.Static_method_in", classdesc));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
            } else {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   249
                contentTree.addContent(
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   250
                        getResource("doclet.Method_in", classdesc));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
        }
17558
eee4ccf66cfd 8010440: Replace int constants in LinkInfoImpl with enum
jjg
parents: 14542
diff changeset
   253
        addPreQualifiedClassLink(LinkInfoImpl.Kind.INDEX, containing,
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   254
                false, contentTree);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
    }
21008
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   256
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   257
    /**
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   258
     * Get the marker anchor which will be added to the index documentation tree.
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   259
     *
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   260
     * @param anchorNameForIndex the anchor name attribute for index page
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   261
     * @return a content tree for the marker anchor
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   262
     */
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   263
    public Content getMarkerAnchorForIndex(String anchorNameForIndex) {
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   264
        return getMarkerAnchor(getNameForIndex(anchorNameForIndex), null);
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   265
    }
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   266
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   267
    /**
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   268
     * Generate a valid HTML name for member index page.
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   269
     *
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   270
     * @param unicode the string that needs to be converted to valid HTML name.
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   271
     * @return a valid HTML name string.
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   272
     */
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   273
    public String getNameForIndex(String unicode) {
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   274
        return "I:" + getName(unicode);
af0b915df7cc 8025633: Fix javadoc to generate valid anchor names
bpatel
parents: 17563
diff changeset
   275
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
}