src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlDocletWriter.java
author jjg
Tue, 15 May 2018 14:15:47 -0700
changeset 50116 cebd0673feeb
parent 49879 601277b1d582
child 50240 b9c483223a91
permissions -rw-r--r--
8203176: javadoc handles non-ASCII characters incorrectly. Reviewed-by: ksrini
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 48295
diff changeset
     2
 * Copyright (c) 1998, 2018, 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: 3891
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: 3891
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: 3891
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3891
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3891
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    26
package jdk.javadoc.internal.doclets.formats.html;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
47849
0e38db7cf1cc 8190820: Introduce a new Head builder class
jjg
parents: 47848
diff changeset
    28
import jdk.javadoc.internal.doclets.formats.html.markup.Head;
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47748
diff changeset
    29
import jdk.javadoc.internal.doclets.formats.html.markup.TableHeader;
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47748
diff changeset
    30
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import java.util.*;
24603
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
    32
import java.util.regex.Matcher;
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
    33
import java.util.regex.Pattern;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    35
import javax.lang.model.element.AnnotationMirror;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    36
import javax.lang.model.element.AnnotationValue;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    37
import javax.lang.model.element.Element;
47328
d18df41954ba 8187521: In some corner cases the javadoc tool can reuse id attribute
jjg
parents: 47300
diff changeset
    38
import javax.lang.model.element.ElementKind;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    39
import javax.lang.model.element.ExecutableElement;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
    40
import javax.lang.model.element.ModuleElement;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    41
import javax.lang.model.element.Name;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    42
import javax.lang.model.element.PackageElement;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    43
import javax.lang.model.element.TypeElement;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    44
import javax.lang.model.element.VariableElement;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    45
import javax.lang.model.type.DeclaredType;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    46
import javax.lang.model.type.TypeMirror;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    47
import javax.lang.model.util.SimpleAnnotationValueVisitor9;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    48
import javax.lang.model.util.SimpleElementVisitor9;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    49
import javax.lang.model.util.SimpleTypeVisitor9;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    50
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    51
import com.sun.source.doctree.AttributeTree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    52
import com.sun.source.doctree.AttributeTree.ValueKind;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    53
import com.sun.source.doctree.CommentTree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    54
import com.sun.source.doctree.DocRootTree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    55
import com.sun.source.doctree.DocTree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    56
import com.sun.source.doctree.DocTree.Kind;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    57
import com.sun.source.doctree.EndElementTree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    58
import com.sun.source.doctree.EntityTree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    59
import com.sun.source.doctree.ErroneousTree;
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40508
diff changeset
    60
import com.sun.source.doctree.IndexTree;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    61
import com.sun.source.doctree.InheritDocTree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    62
import com.sun.source.doctree.LinkTree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    63
import com.sun.source.doctree.LiteralTree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    64
import com.sun.source.doctree.SeeTree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    65
import com.sun.source.doctree.StartElementTree;
46184
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents: 46080
diff changeset
    66
import com.sun.source.doctree.SummaryTree;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    67
import com.sun.source.doctree.TextTree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    68
import com.sun.source.util.SimpleDocTreeVisitor;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    69
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    70
import jdk.javadoc.internal.doclets.formats.html.markup.ContentBuilder;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    71
import jdk.javadoc.internal.doclets.formats.html.markup.DocType;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    72
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlDocument;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    73
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlStyle;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    74
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTag;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    75
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTree;
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47849
diff changeset
    76
import jdk.javadoc.internal.doclets.formats.html.markup.Links;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    77
import jdk.javadoc.internal.doclets.formats.html.markup.RawHtml;
47847
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
    78
import jdk.javadoc.internal.doclets.formats.html.markup.Script;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    79
import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    80
import jdk.javadoc.internal.doclets.toolkit.AnnotationTypeWriter;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    81
import jdk.javadoc.internal.doclets.toolkit.ClassWriter;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    82
import jdk.javadoc.internal.doclets.toolkit.Content;
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
    83
import jdk.javadoc.internal.doclets.toolkit.Messages;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    84
import jdk.javadoc.internal.doclets.toolkit.PackageSummaryWriter;
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
    85
import jdk.javadoc.internal.doclets.toolkit.Resources;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    86
import jdk.javadoc.internal.doclets.toolkit.taglets.DocRootTaglet;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    87
import jdk.javadoc.internal.doclets.toolkit.taglets.TagletWriter;
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40508
diff changeset
    88
import jdk.javadoc.internal.doclets.toolkit.util.CommentHelper;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    89
import jdk.javadoc.internal.doclets.toolkit.util.DocFile;
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40508
diff changeset
    90
import jdk.javadoc.internal.doclets.toolkit.util.DocFileIOException;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    91
import jdk.javadoc.internal.doclets.toolkit.util.DocLink;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    92
import jdk.javadoc.internal.doclets.toolkit.util.DocPath;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    93
import jdk.javadoc.internal.doclets.toolkit.util.DocPaths;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    94
import jdk.javadoc.internal.doclets.toolkit.util.DocletConstants;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    95
import jdk.javadoc.internal.doclets.toolkit.util.Utils;
49879
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
    96
import jdk.javadoc.internal.doclets.toolkit.util.VisibleMemberTable;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    97
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    98
import static com.sun.source.doctree.DocTree.Kind.*;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    99
import static jdk.javadoc.internal.doclets.toolkit.util.CommentHelper.SPACER;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   100
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
 * Class for the Html Format Code Generation specific to JavaDoc.
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
 * This Class contains methods related to the Html Code Generation which
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
 * are used extensively while generating the entire documentation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
 *
14260
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14259
diff changeset
   107
 *  <p><b>This is NOT part of any supported API.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14259
diff changeset
   108
 *  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: 14259
diff changeset
   109
 *  This code and its internal interfaces are subject to change or
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14259
diff changeset
   110
 *  deletion without notice.</b>
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14259
diff changeset
   111
 *
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
 * @author Atul M Dambalkar
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
 * @author Robert Field
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 2086
diff changeset
   114
 * @author Bhavesh Patel (Modified)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
 */
47852
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   116
public class HtmlDocletWriter {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
     * Relative path from the file getting generated to the destination
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
     * directory. For example, if the file getting generated is
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14266
diff changeset
   121
     * "java/lang/Object.html", then the path to the root is "../..".
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
     * This string can be empty if the file getting generated is in
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
     * the destination directory.
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
     */
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14266
diff changeset
   125
    public final DocPath pathToRoot;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
    /**
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14266
diff changeset
   128
     * Platform-independent path from the current or the
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
     * destination directory to the file getting generated.
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
     * Used when creating the file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
     */
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14266
diff changeset
   132
    public final DocPath path;
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
     * Name of the file getting generated. If the file getting generated is
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
     * "java/lang/Object.html", then the filename is "Object.html".
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
     */
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14266
diff changeset
   138
    public final DocPath filename;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
     * The global configuration information for this run.
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
     */
45417
f7479ee8de69 8177848: Rename Configuration(Impl) classes
ksrini
parents: 43870
diff changeset
   143
    public final HtmlConfiguration configuration;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
25454
376a52c9540c 8039028: [javadoc] refactor the usage of Util.java
ksrini
parents: 24603
diff changeset
   145
    protected final Utils utils;
376a52c9540c 8039028: [javadoc] refactor the usage of Util.java
ksrini
parents: 24603
diff changeset
   146
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   147
    protected final Contents contents;
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   148
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   149
    protected final Messages messages;
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   150
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   151
    protected final Resources resources;
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   152
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47849
diff changeset
   153
    protected final Links links;
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47849
diff changeset
   154
48759
ffa68af7da87 8195795: Organize output files by module/package, not just package
jjg
parents: 48756
diff changeset
   155
    protected final DocPaths docPaths;
ffa68af7da87 8195795: Organize output files by module/package, not just package
jjg
parents: 48756
diff changeset
   156
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   158
     * To check whether annotation heading is printed or not.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   159
     */
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   160
    protected boolean printedAnnotationHeading = false;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   161
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   162
    /**
20237
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 19920
diff changeset
   163
     * To check whether annotation field heading is printed or not.
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 19920
diff changeset
   164
     */
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 19920
diff changeset
   165
    protected boolean printedAnnotationFieldHeading = false;
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 19920
diff changeset
   166
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 19920
diff changeset
   167
    /**
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
   168
     * To check whether the repeated annotations is documented or not.
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
   169
     */
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
   170
    private boolean isAnnotationDocumented = false;
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
   171
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
   172
    /**
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
   173
     * To check whether the container annotations is documented or not.
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
   174
     */
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
   175
    private boolean isContainerDocumented = false;
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
   176
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31943
diff changeset
   177
    HtmlTree fixedNavDiv = new HtmlTree(HtmlTag.DIV);
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31943
diff changeset
   178
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   179
    final static Pattern IMPROPER_HTML_CHARS = Pattern.compile(".*[&<>].*");
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   180
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
   181
    /**
47847
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
   182
     * The window title of this file.
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
   183
     */
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
   184
    protected String winTitle;
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
   185
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
   186
    protected Script mainBodyScript;
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
   187
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
   188
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
     * Constructor to construct the HtmlStandardWriter object.
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
     *
47852
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   191
     * @param configuration the configuration for this doclet
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   192
     * @param path the file to be generated.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
     */
45417
f7479ee8de69 8177848: Rename Configuration(Impl) classes
ksrini
parents: 43870
diff changeset
   194
    public HtmlDocletWriter(HtmlConfiguration configuration, DocPath path) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
        this.configuration = configuration;
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   196
        this.contents = configuration.contents;
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   197
        this.messages = configuration.messages;
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   198
        this.resources = configuration.resources;
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 48295
diff changeset
   199
        this.links = new Links(path, configuration.htmlVersion);
25454
376a52c9540c 8039028: [javadoc] refactor the usage of Util.java
ksrini
parents: 24603
diff changeset
   200
        this.utils = configuration.utils;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
        this.path = path;
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14266
diff changeset
   202
        this.pathToRoot = path.parent().invert();
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14266
diff changeset
   203
        this.filename = path.basename();
48759
ffa68af7da87 8195795: Organize output files by module/package, not just package
jjg
parents: 48756
diff changeset
   204
        this.docPaths = configuration.docPaths;
47852
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   205
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   206
        messages.notice("doclet.Generating_0",
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   207
            DocFile.createFileForOutput(configuration, path).getPath());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
     * Replace {&#064;docRoot} tag used in options that accept HTML text, such
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
     * as -header, -footer, -top and -bottom, and when converting a relative
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
     * HREF where commentTagsToString inserts a {&#064;docRoot} where one was
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
     * missing.  (Also see DocRootTaglet for {&#064;docRoot} tags in doc
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
     * comments.)
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
     * <p>
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
     * Replace {&#064;docRoot} tag in htmlstr with the relative path to the
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
     * destination directory from the directory where the file is being
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
     * written, looping to handle all such tags in htmlstr.
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
     * <p>
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
     * For example, for "-d docs" and -header containing {&#064;docRoot}, when
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
     * the HTML page for source file p/C1.java is being generated, the
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
     * {&#064;docRoot} tag would be inserted into the header as "../",
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
     * the relative path from docs/p/ to docs/ (the document root).
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
     * <p>
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
     * Note: This doc comment was written with '&amp;#064;' representing '@'
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
     * to prevent the inline tag from being interpreted.
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
    public String replaceDocRootDir(String htmlstr) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
        // Return if no inline tags exist
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
        int index = htmlstr.indexOf("{@");
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
        if (index < 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
            return htmlstr;
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
        }
24603
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   235
        Matcher docrootMatcher = docrootPattern.matcher(htmlstr);
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   236
        if (!docrootMatcher.find()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
            return htmlstr;
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
        }
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 7681
diff changeset
   239
        StringBuilder buf = new StringBuilder();
24603
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   240
        int prevEnd = 0;
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   241
        do {
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   242
            int match = docrootMatcher.start();
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   243
            // append htmlstr up to start of next {@docroot}
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   244
            buf.append(htmlstr.substring(prevEnd, match));
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   245
            prevEnd = docrootMatcher.end();
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   246
            if (configuration.docrootparent.length() > 0 && htmlstr.startsWith("/..", prevEnd)) {
22005
4270ada5dcd1 8025416: doclet not substituting {@docRoot} in some cases
bpatel
parents: 21494
diff changeset
   247
                // Insert the absolute link if {@docRoot} is followed by "/..".
9608
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 9606
diff changeset
   248
                buf.append(configuration.docrootparent);
24603
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   249
                prevEnd += 3;
9608
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 9606
diff changeset
   250
            } else {
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 9606
diff changeset
   251
                // Insert relative path where {@docRoot} was located
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14266
diff changeset
   252
                buf.append(pathToRoot.isEmpty() ? "." : pathToRoot.getPath());
22005
4270ada5dcd1 8025416: doclet not substituting {@docRoot} in some cases
bpatel
parents: 21494
diff changeset
   253
            }
4270ada5dcd1 8025416: doclet not substituting {@docRoot} in some cases
bpatel
parents: 21494
diff changeset
   254
            // Append slash if next character is not a slash
24603
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   255
            if (prevEnd < htmlstr.length() && htmlstr.charAt(prevEnd) != '/') {
22005
4270ada5dcd1 8025416: doclet not substituting {@docRoot} in some cases
bpatel
parents: 21494
diff changeset
   256
                buf.append('/');
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
            }
24603
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   258
        } while (docrootMatcher.find());
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   259
        buf.append(htmlstr.substring(prevEnd));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
        return buf.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
    }
24603
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   262
    //where:
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   263
        // Note: {@docRoot} is not case sensitive when passed in w/command line option:
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   264
        private static final Pattern docrootPattern =
43e7e44d63da 8043186: javac test langtools/tools/javac/util/StringUtilsTest.java fails
jlahoda
parents: 24221
diff changeset
   265
                Pattern.compile(Pattern.quote("{@docroot}"), Pattern.CASE_INSENSITIVE);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   268
     * Get the script to show or hide the All classes link.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   269
     *
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   270
     * @param id id of the element to show or hide
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   271
     * @return a content tree for the script
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   272
     */
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   273
    public Content getAllClassesLinkScript(String id) {
47847
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
   274
        Script script = new Script("<!--\n" +
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
   275
                "  allClassesLink = document.getElementById(")
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
   276
                .appendStringLiteral(id)
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
   277
                .append(");\n" +
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   278
                "  if(window==top) {\n" +
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   279
                "    allClassesLink.style.display = \"block\";\n" +
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   280
                "  }\n" +
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   281
                "  else {\n" +
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   282
                "    allClassesLink.style.display = \"none\";\n" +
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   283
                "  }\n" +
47847
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
   284
                "  //-->\n");
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
   285
        Content div = HtmlTree.DIV(script.asContent());
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   286
        Content div_noscript = HtmlTree.DIV(contents.noScriptMessage);
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 26900
diff changeset
   287
        Content noScript = HtmlTree.NOSCRIPT(div_noscript);
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 26900
diff changeset
   288
        div.addContent(noScript);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   289
        return div;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   290
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   291
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   292
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   293
     * Add method information.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   294
     *
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   295
     * @param method the method to be documented
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   296
     * @param dl the content tree to which the method information will be added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   297
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   298
    private void addMethodInfo(ExecutableElement method, Content dl) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   299
        TypeElement enclosing = utils.getEnclosingTypeElement(method);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   300
        List<? extends TypeMirror> intfacs = enclosing.getInterfaces();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   301
        ExecutableElement overriddenMethod = utils.overriddenMethod(method);
49879
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
   302
        VisibleMemberTable vmt = configuration.getVisibleMemberTable(enclosing);
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 2086
diff changeset
   303
        // Check whether there is any implementation or overridden info to be
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 2086
diff changeset
   304
        // printed. If no overridden or implementation info needs to be
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 2086
diff changeset
   305
        // printed, do not print this section.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   306
        if ((!intfacs.isEmpty()
49879
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
   307
                && vmt.getImplementedMethods(method).isEmpty() == false)
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   308
                || overriddenMethod != null) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   309
            MethodWriterImpl.addImplementsInfo(this, method, dl);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
            if (overriddenMethod != null) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   311
                MethodWriterImpl.addOverridden(this,
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   312
                        utils.overriddenType(method),
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   313
                        overriddenMethod,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   314
                        dl);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   319
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   320
     * Adds the tags information.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   321
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   322
     * @param e the Element for which the tags will be generated
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   323
     * @param htmltree the documentation tree to which the tags will be added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   324
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   325
    protected void addTagsInfo(Element e, Content htmltree) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   326
        if (configuration.nocomment) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
        }
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   329
        Content dl = new HtmlTree(HtmlTag.DL);
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   330
        if (utils.isExecutableElement(e) && !utils.isConstructor(e)) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   331
            addMethodInfo((ExecutableElement)e, dl);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
        }
17574
044c7e1e4d53 8012308: Remove TagletOutput in favor of direct use of Content
jjg
parents: 17573
diff changeset
   333
        Content output = new ContentBuilder();
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   334
        TagletWriter.genTagOutput(configuration.tagletManager, e,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   335
            configuration.tagletManager.getCustomTaglets(e),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
                getTagletWriterInstance(false), output);
17574
044c7e1e4d53 8012308: Remove TagletOutput in favor of direct use of Content
jjg
parents: 17573
diff changeset
   337
        dl.addContent(output);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   338
        htmltree.addContent(dl);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
    /**
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 2086
diff changeset
   342
     * Check whether there are any tags for Serialization Overview
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 2086
diff changeset
   343
     * section to be printed.
2086
cca2603eab0b 6802694: Javadoc doclet does not display deprecated information with -nocomment option for serialized form
bpatel
parents: 1789
diff changeset
   344
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   345
     * @param field the VariableElement object to check for tags.
2086
cca2603eab0b 6802694: Javadoc doclet does not display deprecated information with -nocomment option for serialized form
bpatel
parents: 1789
diff changeset
   346
     * @return true if there are tags to be printed else return false.
cca2603eab0b 6802694: Javadoc doclet does not display deprecated information with -nocomment option for serialized form
bpatel
parents: 1789
diff changeset
   347
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   348
    protected boolean hasSerializationOverviewTags(VariableElement field) {
17574
044c7e1e4d53 8012308: Remove TagletOutput in favor of direct use of Content
jjg
parents: 17573
diff changeset
   349
        Content output = new ContentBuilder();
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   350
        TagletWriter.genTagOutput(configuration.tagletManager, field,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   351
                configuration.tagletManager.getCustomTaglets(field),
2086
cca2603eab0b 6802694: Javadoc doclet does not display deprecated information with -nocomment option for serialized form
bpatel
parents: 1789
diff changeset
   352
                getTagletWriterInstance(false), output);
17574
044c7e1e4d53 8012308: Remove TagletOutput in favor of direct use of Content
jjg
parents: 17573
diff changeset
   353
        return !output.isEmpty();
2086
cca2603eab0b 6802694: Javadoc doclet does not display deprecated information with -nocomment option for serialized form
bpatel
parents: 1789
diff changeset
   354
    }
cca2603eab0b 6802694: Javadoc doclet does not display deprecated information with -nocomment option for serialized form
bpatel
parents: 1789
diff changeset
   355
cca2603eab0b 6802694: Javadoc doclet does not display deprecated information with -nocomment option for serialized form
bpatel
parents: 1789
diff changeset
   356
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
     * Returns a TagletWriter that knows how to write HTML.
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
     * @return a TagletWriter that knows how to write HTML.
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
    public TagletWriter getTagletWriterInstance(boolean isFirstSentence) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
        return new TagletWriterImpl(this, isFirstSentence);
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   366
     * Get Package link, with target frame.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   368
     * @param pkg The link will be to the "package-summary.html" page for this package
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   369
     * @param target name of the target frame
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   370
     * @param label tag for the link
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   371
     * @return a content for the target package link
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   373
    public Content getTargetPackageLink(PackageElement pkg, String target,
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   374
            Content label) {
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 48295
diff changeset
   375
        return links.createLink(pathString(pkg, DocPaths.PACKAGE_SUMMARY), label, "", target);
15723
58a73dac9ee4 8006124: javadoc/doclet should be updated to support profiles
bpatel
parents: 15035
diff changeset
   376
    }
58a73dac9ee4 8006124: javadoc/doclet should be updated to support profiles
bpatel
parents: 15035
diff changeset
   377
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   378
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   379
     * Get Module Package link, with target frame.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   380
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   381
     * @param pkg the PackageElement
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   382
     * @param target name of the target frame
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   383
     * @param label tag for the link
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   384
     * @param mdle the module being documented
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   385
     * @return a content for the target module packages link
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   386
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   387
    public Content getTargetModulePackageLink(PackageElement pkg, String target,
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   388
            Content label, ModuleElement mdle) {
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 48295
diff changeset
   389
        return links.createLink(pathString(pkg, DocPaths.PACKAGE_SUMMARY),
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   390
                label, "", target);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   391
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   392
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   393
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   394
     * Get Module link, with target frame.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   395
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   396
     * @param target name of the target frame
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   397
     * @param label tag for the link
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   398
     * @param mdle the module being documented
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   399
     * @return a content for the target module link
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   400
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   401
    public Content getTargetModuleLink(String target, Content label, ModuleElement mdle) {
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 48295
diff changeset
   402
        return links.createLink(pathToRoot.resolve(
48759
ffa68af7da87 8195795: Organize output files by module/package, not just package
jjg
parents: 48756
diff changeset
   403
                docPaths.moduleSummary(mdle)), label, "", target);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   404
    }
15723
58a73dac9ee4 8006124: javadoc/doclet should be updated to support profiles
bpatel
parents: 15035
diff changeset
   405
58a73dac9ee4 8006124: javadoc/doclet should be updated to support profiles
bpatel
parents: 15035
diff changeset
   406
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   407
     * Generates the HTML document tree and prints it out.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   408
     *
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   409
     * @param metakeywords Array of String keywords for META tag. Each element
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   410
     *                     of the array is assigned to a separate META tag.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   411
     *                     Pass in null for no array
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   412
     * @param includeScript true if printing windowtitle script
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   413
     *                      false for files that appear in the left-hand frames
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   414
     * @param body the body htmltree to be included in the document
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40508
diff changeset
   415
     * @throws DocFileIOException if there is a problem writing the file
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   416
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   417
    public void printHtmlDocument(List<String> metakeywords, boolean includeScript,
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40508
diff changeset
   418
            Content body) throws DocFileIOException {
47848
6b1311fbbaba 8190819: Merge HtmlWriter into HtmlDocument
jjg
parents: 47847
diff changeset
   419
        DocType htmlDocType = DocType.forVersion(configuration.htmlVersion);
6b1311fbbaba 8190819: Merge HtmlWriter into HtmlDocument
jjg
parents: 47847
diff changeset
   420
        Content htmlComment = contents.newPage;
47849
0e38db7cf1cc 8190820: Introduce a new Head builder class
jjg
parents: 47848
diff changeset
   421
        Head head = new Head(path, configuration.htmlVersion, configuration.docletVersion)
0e38db7cf1cc 8190820: Introduce a new Head builder class
jjg
parents: 47848
diff changeset
   422
                .setTimestamp(!configuration.notimestamp)
0e38db7cf1cc 8190820: Introduce a new Head builder class
jjg
parents: 47848
diff changeset
   423
                .setTitle(winTitle)
0e38db7cf1cc 8190820: Introduce a new Head builder class
jjg
parents: 47848
diff changeset
   424
                .setCharset(configuration.charset)
0e38db7cf1cc 8190820: Introduce a new Head builder class
jjg
parents: 47848
diff changeset
   425
                .addKeywords(metakeywords)
0e38db7cf1cc 8190820: Introduce a new Head builder class
jjg
parents: 47848
diff changeset
   426
                .setStylesheets(configuration.getMainStylesheet(), configuration.getAdditionalStylesheets())
48991
978c3036fbfc 8198522: Javadoc search broken after output files organization for modules
bpatel
parents: 48759
diff changeset
   427
                .setUseModuleDirectories(configuration.useModuleDirectories)
47849
0e38db7cf1cc 8190820: Introduce a new Head builder class
jjg
parents: 47848
diff changeset
   428
                .setIndex(configuration.createindex, mainBodyScript);
47848
6b1311fbbaba 8190819: Merge HtmlWriter into HtmlDocument
jjg
parents: 47847
diff changeset
   429
47849
0e38db7cf1cc 8190820: Introduce a new Head builder class
jjg
parents: 47848
diff changeset
   430
        Content htmlTree = HtmlTree.HTML(configuration.getLocale().getLanguage(), head.toContent(), body);
47848
6b1311fbbaba 8190819: Merge HtmlWriter into HtmlDocument
jjg
parents: 47847
diff changeset
   431
        HtmlDocument htmlDocument = new HtmlDocument(htmlDocType, htmlComment, htmlTree);
6b1311fbbaba 8190819: Merge HtmlWriter into HtmlDocument
jjg
parents: 47847
diff changeset
   432
        htmlDocument.write(DocFile.createFileForOutput(configuration, path));
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   433
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   434
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   435
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   436
     * Get the window title.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   437
     *
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   438
     * @param title the title string to construct the complete window title
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   439
     * @return the window title string
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   440
     */
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   441
    public String getWindowTitle(String title) {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   442
        if (configuration.windowtitle.length() > 0) {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   443
            title += " (" + configuration.windowtitle  + ")";
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   444
        }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   445
        return title;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   446
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   447
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   448
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   449
     * Get user specified header and the footer.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   450
     *
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   451
     * @param header if true print the user provided header else print the
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   452
     * user provided footer.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   453
     */
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   454
    public Content getUserHeaderFooter(boolean header) {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   455
        String content;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   456
        if (header) {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   457
            content = replaceDocRootDir(configuration.header);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   458
        } else {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   459
            if (configuration.footer.length() != 0) {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   460
                content = replaceDocRootDir(configuration.footer);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   461
            } else {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   462
                content = replaceDocRootDir(configuration.header);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   463
            }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   464
        }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   465
        Content rawContent = new RawHtml(content);
19254
0988183c8164 4749567: stddoclet: Add CSS style for setting header/footer to be italic
bpatel
parents: 19253
diff changeset
   466
        return rawContent;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   467
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   468
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   469
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   470
     * Adds the user specified top.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   471
     *
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 26900
diff changeset
   472
     * @param htmlTree the content tree to which user specified top will be added
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   473
     */
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 26900
diff changeset
   474
    public void addTop(Content htmlTree) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   475
        Content top = new RawHtml(replaceDocRootDir(configuration.top));
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 31943
diff changeset
   476
        fixedNavDiv.addContent(top);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   477
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   478
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   479
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   480
     * Adds the user specified bottom.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   481
     *
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 26900
diff changeset
   482
     * @param htmlTree the content tree to which user specified bottom will be added
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   483
     */
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 26900
diff changeset
   484
    public void addBottom(Content htmlTree) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   485
        Content bottom = new RawHtml(replaceDocRootDir(configuration.bottom));
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   486
        Content small = HtmlTree.SMALL(bottom);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   487
        Content p = HtmlTree.P(HtmlStyle.legalCopy, small);
29957
7740f9657f56 8072945: Javadoc should generate valid and compliant HTML5 output
bpatel
parents: 26900
diff changeset
   488
        htmlTree.addContent(p);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   489
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   490
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   491
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   492
     * Get the overview tree link for the main tree.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   493
     *
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   494
     * @param label the label for the link
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   495
     * @return a content tree for the link
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   496
     */
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   497
    protected Content getNavLinkMainTree(String label) {
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 48295
diff changeset
   498
        Content mainTreeContent = links.createLink(pathToRoot.resolve(DocPaths.OVERVIEW_TREE),
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   499
                new StringContent(label));
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   500
        Content li = HtmlTree.LI(mainTreeContent);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   501
        return li;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   502
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   505
     * Get table caption.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   506
     *
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47395
diff changeset
   507
     * @param title the content for the caption
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   508
     * @return a content tree for the caption
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   509
     */
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
   510
    public Content getTableCaption(Content title) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   511
        Content captionSpan = HtmlTree.SPAN(title);
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   512
        Content space = Contents.SPACE;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   513
        Content tabSpan = HtmlTree.SPAN(HtmlStyle.tabEnd, space);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   514
        Content caption = HtmlTree.CAPTION(captionSpan);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   515
        caption.addContent(tabSpan);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   516
        return caption;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   517
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   518
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   519
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   520
     * Returns a packagename content.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   521
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   522
     * @param packageElement the package to check
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   523
     * @return package name content
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   524
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   525
    public Content getPackageName(PackageElement packageElement) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   526
        return packageElement == null || packageElement.isUnnamed()
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   527
                ? contents.defaultPackageLabel
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   528
                : getPackageLabel(packageElement.getQualifiedName());
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   529
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   530
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   531
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   532
     * Returns a package name label.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   533
     *
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 14258
diff changeset
   534
     * @param packageName the package name
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   535
     * @return the package name content
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   536
     */
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   537
    public Content getPackageLabel(CharSequence packageName) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   538
        return new StringContent(packageName);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   539
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   540
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   541
    /**
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   542
     * Return the path to the class page for a typeElement.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   543
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   544
     * @param te   TypeElement for which the path is requested.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   545
     * @param name Name of the file(doesn't include path).
06bc494ca11e Initial load
duke
parents:
diff changeset
   546
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   547
    protected DocPath pathString(TypeElement te, DocPath name) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   548
        return pathString(utils.containingPackage(te), name);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
06bc494ca11e Initial load
duke
parents:
diff changeset
   551
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   552
     * Return path to the given file name in the given package. So if the name
06bc494ca11e Initial load
duke
parents:
diff changeset
   553
     * passed is "Object.html" and the name of the package is "java.lang", and
06bc494ca11e Initial load
duke
parents:
diff changeset
   554
     * if the relative path is "../.." then returned string will be
06bc494ca11e Initial load
duke
parents:
diff changeset
   555
     * "../../java/lang/Object.html"
06bc494ca11e Initial load
duke
parents:
diff changeset
   556
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   557
     * @param packageElement Package in which the file name is assumed to be.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
     * @param name File name, to which path string is.
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   560
    protected DocPath pathString(PackageElement packageElement, DocPath name) {
48759
ffa68af7da87 8195795: Organize output files by module/package, not just package
jjg
parents: 48756
diff changeset
   561
        return pathToRoot.resolve(docPaths.forPackage(packageElement).resolve(name));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   562
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   563
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
    /**
26900
dccc7a72526d 8048351: tidy errors for attribute href, name for langtools javadoc tests needs investigation
bpatel
parents: 26665
diff changeset
   565
     * Given a package, return the name to be used in HTML anchor tag.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   566
     * @param packageElement the package.
26900
dccc7a72526d 8048351: tidy errors for attribute href, name for langtools javadoc tests needs investigation
bpatel
parents: 26665
diff changeset
   567
     * @return the name to be used in HTML anchor tag.
dccc7a72526d 8048351: tidy errors for attribute href, name for langtools javadoc tests needs investigation
bpatel
parents: 26665
diff changeset
   568
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   569
    public String getPackageAnchorName(PackageElement packageElement) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   570
        return packageElement == null || packageElement.isUnnamed()
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   571
                ? SectionName.UNNAMED_PACKAGE_ANCHOR.getName()
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   572
                : utils.getPackageName(packageElement);
26900
dccc7a72526d 8048351: tidy errors for attribute href, name for langtools javadoc tests needs investigation
bpatel
parents: 26665
diff changeset
   573
    }
dccc7a72526d 8048351: tidy errors for attribute href, name for langtools javadoc tests needs investigation
bpatel
parents: 26665
diff changeset
   574
dccc7a72526d 8048351: tidy errors for attribute href, name for langtools javadoc tests needs investigation
bpatel
parents: 26665
diff changeset
   575
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
     * Return the link to the given package.
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   578
     * @param packageElement the package to link to.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   579
     * @param label the label for the link.
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   580
     * @return a content tree for the package link.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   581
     */
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   582
    public Content getPackageLink(PackageElement packageElement, CharSequence label) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   583
        return getPackageLink(packageElement, new StringContent(label));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   584
    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   585
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   586
    public Content getPackageLink(PackageElement packageElement) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   587
        StringContent content =  packageElement.isUnnamed()
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   588
                ? new StringContent()
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   589
                : new StringContent(utils.getPackageName(packageElement));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   590
        return getPackageLink(packageElement, content);
17563
e8ddeb9bd17c 8011668: Allow HTMLWriter.getResource to take Content args
jjg
parents: 17561
diff changeset
   591
    }
e8ddeb9bd17c 8011668: Allow HTMLWriter.getResource to take Content args
jjg
parents: 17561
diff changeset
   592
e8ddeb9bd17c 8011668: Allow HTMLWriter.getResource to take Content args
jjg
parents: 17561
diff changeset
   593
    /**
e8ddeb9bd17c 8011668: Allow HTMLWriter.getResource to take Content args
jjg
parents: 17561
diff changeset
   594
     * Return the link to the given package.
e8ddeb9bd17c 8011668: Allow HTMLWriter.getResource to take Content args
jjg
parents: 17561
diff changeset
   595
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   596
     * @param packageElement the package to link to.
17563
e8ddeb9bd17c 8011668: Allow HTMLWriter.getResource to take Content args
jjg
parents: 17561
diff changeset
   597
     * @param label the label for the link.
e8ddeb9bd17c 8011668: Allow HTMLWriter.getResource to take Content args
jjg
parents: 17561
diff changeset
   598
     * @return a content tree for the package link.
e8ddeb9bd17c 8011668: Allow HTMLWriter.getResource to take Content args
jjg
parents: 17561
diff changeset
   599
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   600
    public Content getPackageLink(PackageElement packageElement, Content label) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   601
        boolean included = packageElement != null && utils.isIncluded(packageElement);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   602
        if (!included) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   603
            for (PackageElement p : configuration.packages) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   604
                if (p.equals(packageElement)) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   605
                    included = true;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   606
                    break;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   607
                }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   608
            }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   609
        }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   610
        if (included || packageElement == null) {
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 48295
diff changeset
   611
            return links.createLink(pathString(packageElement, DocPaths.PACKAGE_SUMMARY),
14358
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   612
                    label);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   613
        } else {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   614
            DocLink crossPkgLink = getCrossPackageLink(utils.getPackageName(packageElement));
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   615
            if (crossPkgLink != null) {
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 48295
diff changeset
   616
                return links.createLink(crossPkgLink, label);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   617
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   618
                return label;
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   620
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   621
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   622
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   623
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   624
     * Get Module link.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   625
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   626
     * @param mdle the module being documented
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   627
     * @param label tag for the link
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   628
     * @return a content for the module link
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   629
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   630
    public Content getModuleLink(ModuleElement mdle, Content label) {
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   631
        boolean included = utils.isIncluded(mdle);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   632
        return (included)
48759
ffa68af7da87 8195795: Organize output files by module/package, not just package
jjg
parents: 48756
diff changeset
   633
                ? links.createLink(pathToRoot.resolve(docPaths.moduleSummary(mdle)), label, "", "")
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   634
                : label;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   635
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36500
diff changeset
   636
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   637
    public Content interfaceName(TypeElement typeElement, boolean qual) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   638
        Content name = new StringContent((qual)
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   639
                ? typeElement.getQualifiedName()
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   640
                : utils.getSimpleName(typeElement));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   641
        return (utils.isInterface(typeElement)) ?  HtmlTree.SPAN(HtmlStyle.interfaceName, name) : name;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   642
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   643
06bc494ca11e Initial load
duke
parents:
diff changeset
   644
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   645
     * Add the link to the content tree.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   646
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   647
     * @param typeElement program element typeElement for which the link will be added
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   648
     * @param label label for the link
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   649
     * @param htmltree the content tree to which the link will be added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   650
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   651
    public void addSrcLink(Element typeElement, Content label, Content htmltree) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   652
        if (typeElement == null) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   653
            return;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   654
        }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   655
        TypeElement te = utils.getEnclosingTypeElement(typeElement);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   656
        if (te == null) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   657
            // must be a typeElement since in has no containing class.
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   658
            te = (TypeElement) typeElement;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   659
        }
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14266
diff changeset
   660
        DocPath href = pathToRoot
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14266
diff changeset
   661
                .resolve(DocPaths.SOURCE_OUTPUT)
48759
ffa68af7da87 8195795: Organize output files by module/package, not just package
jjg
parents: 48756
diff changeset
   662
                .resolve(docPaths.forClass(te));
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 48295
diff changeset
   663
        Content linkContent = links.createLink(href
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   664
                .fragment(SourceToHTMLConverter.getAnchorName(utils, typeElement)), label, "", "");
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   665
        htmltree.addContent(linkContent);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   666
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   667
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   668
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   669
     * Return the link to the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   670
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
     * @param linkInfo the information about the link.
06bc494ca11e Initial load
duke
parents:
diff changeset
   672
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   673
     * @return the link for the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   674
     */
17559
87c28ee29329 8011642: Remove LinkOutput in favor of direct use of Content
jjg
parents: 17558
diff changeset
   675
    public Content getLink(LinkInfoImpl linkInfo) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   676
        LinkFactoryImpl factory = new LinkFactoryImpl(this);
17564
c329fe11193d 8011288: Erratic/inconsistent indentation of signatures
jjg
parents: 17563
diff changeset
   677
        return factory.getLink(linkInfo);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   678
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   679
06bc494ca11e Initial load
duke
parents:
diff changeset
   680
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   681
     * Return the type parameters for the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   682
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   683
     * @param linkInfo the information about the link.
06bc494ca11e Initial load
duke
parents:
diff changeset
   684
     * @return the type for the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   685
     */
17559
87c28ee29329 8011642: Remove LinkOutput in favor of direct use of Content
jjg
parents: 17558
diff changeset
   686
    public Content getTypeParameterLinks(LinkInfoImpl linkInfo) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   687
        LinkFactoryImpl factory = new LinkFactoryImpl(this);
17559
87c28ee29329 8011642: Remove LinkOutput in favor of direct use of Content
jjg
parents: 17558
diff changeset
   688
        return factory.getTypeParameterLinks(linkInfo, false);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   689
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   690
06bc494ca11e Initial load
duke
parents:
diff changeset
   691
    /*************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   692
     * Return a class cross link to external class documentation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   693
     * The name must be fully qualified to determine which package
06bc494ca11e Initial load
duke
parents:
diff changeset
   694
     * the class is in.  The -link option does not allow users to
06bc494ca11e Initial load
duke
parents:
diff changeset
   695
     * link to external classes in the "default" package.
06bc494ca11e Initial load
duke
parents:
diff changeset
   696
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   697
     * @param qualifiedClassName the qualified name of the external class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   698
     * @param refMemName the name of the member being referenced.  This should
06bc494ca11e Initial load
duke
parents:
diff changeset
   699
     * be null or empty string if no member is being referenced.
06bc494ca11e Initial load
duke
parents:
diff changeset
   700
     * @param label the label for the external link.
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 1264
diff changeset
   701
     * @param strong true if the link should be strong.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   702
     * @param code true if the label should be code font.
47851
6a9bb4f77d50 8190822: Remove dead code that could lead to invalid HTML
jjg
parents: 47850
diff changeset
   703
     * @return the link
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   704
     */
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   705
    public Content getCrossClassLink(String qualifiedClassName, String refMemName,
47851
6a9bb4f77d50 8190822: Remove dead code that could lead to invalid HTML
jjg
parents: 47850
diff changeset
   706
                                    Content label, boolean strong, boolean code) {
14358
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   707
        String className = "";
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   708
        String packageName = qualifiedClassName == null ? "" : qualifiedClassName;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   709
        int periodIndex;
14358
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   710
        while ((periodIndex = packageName.lastIndexOf('.')) != -1) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   711
            className = packageName.substring(periodIndex + 1, packageName.length()) +
06bc494ca11e Initial load
duke
parents:
diff changeset
   712
                (className.length() > 0 ? "." + className : "");
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   713
            Content defaultLabel = new StringContent(className);
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   714
            if (code)
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   715
                defaultLabel = HtmlTree.CODE(defaultLabel);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   716
            packageName = packageName.substring(0, periodIndex);
06bc494ca11e Initial load
duke
parents:
diff changeset
   717
            if (getCrossPackageLink(packageName) != null) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   718
                /*
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   719
                The package exists in external documentation, so link to the external
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   720
                class (assuming that it exists).  This is definitely a limitation of
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   721
                the -link option.  There are ways to determine if an external package
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   722
                exists, but no way to determine if the external class exists.  We just
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   723
                have to assume that it does.
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   724
                */
14358
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   725
                DocLink link = configuration.extern.getExternalLink(packageName, pathToRoot,
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   726
                                className + ".html", refMemName);
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 48295
diff changeset
   727
                return links.createLink(link,
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   728
                    (label == null) || label.isEmpty() ? defaultLabel : label,
47851
6a9bb4f77d50 8190822: Remove dead code that could lead to invalid HTML
jjg
parents: 47850
diff changeset
   729
                    strong,
6a9bb4f77d50 8190822: Remove dead code that could lead to invalid HTML
jjg
parents: 47850
diff changeset
   730
                    resources.getText("doclet.Href_Class_Or_Interface_Title", packageName),
48295
c79d31ba84b9 8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents: 48029
diff changeset
   731
                    "", true);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   732
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   733
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   734
        return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   735
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   736
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   737
    public boolean isClassLinkable(TypeElement typeElement) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   738
        if (utils.isIncluded(typeElement)) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   739
            return configuration.isGeneratedDoc(typeElement);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   740
        }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   741
        return configuration.extern.isExternal(typeElement);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   742
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   743
14358
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   744
    public DocLink getCrossPackageLink(String pkgName) {
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14266
diff changeset
   745
        return configuration.extern.getExternalLink(pkgName, pathToRoot,
14358
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   746
            DocPaths.PACKAGE_SUMMARY.getPath());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   747
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   748
48295
c79d31ba84b9 8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents: 48029
diff changeset
   749
    public DocLink getCrossModuleLink(String mdleName) {
c79d31ba84b9 8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents: 48029
diff changeset
   750
        return configuration.extern.getExternalLink(mdleName, pathToRoot,
48759
ffa68af7da87 8195795: Organize output files by module/package, not just package
jjg
parents: 48756
diff changeset
   751
            docPaths.moduleSummary(mdleName).getPath());
48295
c79d31ba84b9 8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents: 48029
diff changeset
   752
    }
c79d31ba84b9 8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents: 48029
diff changeset
   753
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   754
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   755
     * Get the class link.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   756
     *
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   757
     * @param context the id of the context where the link will be added
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   758
     * @param element to link to
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   759
     * @return a content tree for the link
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   760
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   761
    public Content getQualifiedClassLink(LinkInfoImpl.Kind context, Element element) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   762
        LinkInfoImpl linkInfoImpl = new LinkInfoImpl(configuration, context, (TypeElement)element);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   763
        return getLink(linkInfoImpl.label(utils.getFullyQualifiedName(element)));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   764
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   765
06bc494ca11e Initial load
duke
parents:
diff changeset
   766
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   767
     * Add the class link.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   768
     *
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   769
     * @param context the id of the context where the link will be added
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   770
     * @param typeElement to link to
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   771
     * @param contentTree the content tree to which the link will be added
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   772
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   773
    public void addPreQualifiedClassLink(LinkInfoImpl.Kind context, TypeElement typeElement, Content contentTree) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   774
        addPreQualifiedClassLink(context, typeElement, false, contentTree);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   775
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   776
06bc494ca11e Initial load
duke
parents:
diff changeset
   777
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   778
     * Retrieve the class link with the package portion of the label in
14358
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   779
     * plain text.  If the qualifier is excluded, it will not be included in the
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   780
     * link label.
06bc494ca11e Initial load
duke
parents:
diff changeset
   781
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   782
     * @param typeElement the class to link to.
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 1264
diff changeset
   783
     * @param isStrong true if the link should be strong.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   784
     * @return the link with the package portion of the label in plain text.
06bc494ca11e Initial load
duke
parents:
diff changeset
   785
     */
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   786
    public Content getPreQualifiedClassLink(LinkInfoImpl.Kind context,
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   787
            TypeElement typeElement, boolean isStrong) {
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   788
        ContentBuilder classlink = new ContentBuilder();
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   789
        PackageElement pkg = utils.containingPackage(typeElement);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   790
        if (pkg != null && ! configuration.shouldExcludeQualifier(pkg.getSimpleName().toString())) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   791
            classlink.addContent(getEnclosingPackageName(typeElement));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   792
        }
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   793
        classlink.addContent(getLink(new LinkInfoImpl(configuration,
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   794
                context, typeElement).label(utils.getSimpleName(typeElement)).strong(isStrong)));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   795
        return classlink;
06bc494ca11e Initial load
duke
parents:
diff changeset
   796
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   797
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   798
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   799
     * Add the class link with the package portion of the label in
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   800
     * plain text. If the qualifier is excluded, it will not be included in the
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   801
     * link label.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   802
     *
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   803
     * @param context the id of the context where the link will be added
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   804
     * @param typeElement the class to link to
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   805
     * @param isStrong true if the link should be strong
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   806
     * @param contentTree the content tree to which the link with be added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   807
     */
17558
eee4ccf66cfd 8010440: Replace int constants in LinkInfoImpl with enum
jjg
parents: 17547
diff changeset
   808
    public void addPreQualifiedClassLink(LinkInfoImpl.Kind context,
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   809
            TypeElement typeElement, boolean isStrong, Content contentTree) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   810
        PackageElement pkg = utils.containingPackage(typeElement);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   811
        if(pkg != null && ! configuration.shouldExcludeQualifier(pkg.getSimpleName().toString())) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   812
            contentTree.addContent(getEnclosingPackageName(typeElement));
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   813
        }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   814
        LinkInfoImpl linkinfo = new LinkInfoImpl(configuration, context, typeElement)
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   815
                .label(utils.getSimpleName(typeElement))
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   816
                .strong(isStrong);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   817
        Content link = getLink(linkinfo);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   818
        contentTree.addContent(link);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   819
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   820
06bc494ca11e Initial load
duke
parents:
diff changeset
   821
    /**
47852
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   822
     * Get the enclosed name of the package
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   823
     *
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   824
     * @param te  TypeElement
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   825
     * @return the name
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   826
     */
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   827
    public String getEnclosingPackageName(TypeElement te) {
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   828
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   829
        PackageElement encl = configuration.utils.containingPackage(te);
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   830
        return (encl.isUnnamed()) ? "" : (encl.getQualifiedName() + ".");
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   831
    }
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   832
90e0110a05f6 8190824: Eliminate HtmlDocWriter
jjg
parents: 47851
diff changeset
   833
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   834
     * Add the class link, with only class name as the strong link and prefixing
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   835
     * plain package name.
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   836
     *
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   837
     * @param context the id of the context where the link will be added
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   838
     * @param typeElement the class to link to
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   839
     * @param contentTree the content tree to which the link with be added
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   840
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   841
    public void addPreQualifiedStrongClassLink(LinkInfoImpl.Kind context, TypeElement typeElement, Content contentTree) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   842
        addPreQualifiedClassLink(context, typeElement, true, contentTree);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   843
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   844
06bc494ca11e Initial load
duke
parents:
diff changeset
   845
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   846
     * Get the link for the given member.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   847
     *
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   848
     * @param context the id of the context where the link will be added
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   849
     * @param element the member being linked to
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   850
     * @param label the label for the link
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   851
     * @return a content tree for the element link
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   852
     */
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   853
    public Content getDocLink(LinkInfoImpl.Kind context, Element element, CharSequence label) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   854
        return getDocLink(context, utils.getEnclosingTypeElement(element), element,
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   855
                new StringContent(label));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   856
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   857
06bc494ca11e Initial load
duke
parents:
diff changeset
   858
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   859
     * Return the link for the given member.
06bc494ca11e Initial load
duke
parents:
diff changeset
   860
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   861
     * @param context the id of the context where the link will be printed.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   862
     * @param element the member being linked to.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   863
     * @param label the label for the link.
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 1264
diff changeset
   864
     * @param strong true if the link should be strong.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   865
     * @return the link for the given member.
06bc494ca11e Initial load
duke
parents:
diff changeset
   866
     */
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   867
    public Content getDocLink(LinkInfoImpl.Kind context, Element element, CharSequence label,
17559
87c28ee29329 8011642: Remove LinkOutput in favor of direct use of Content
jjg
parents: 17558
diff changeset
   868
            boolean strong) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   869
        return getDocLink(context, utils.getEnclosingTypeElement(element), element, label, strong);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   870
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   871
06bc494ca11e Initial load
duke
parents:
diff changeset
   872
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   873
     * Return the link for the given member.
06bc494ca11e Initial load
duke
parents:
diff changeset
   874
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   875
     * @param context the id of the context where the link will be printed.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   876
     * @param typeElement the typeElement that we should link to.  This is not
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   877
                 necessarily equal to element.containingClass().  We may be
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   878
                 inheriting comments.
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   879
     * @param element the member being linked to.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   880
     * @param label the label for the link.
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 1264
diff changeset
   881
     * @param strong true if the link should be strong.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   882
     * @return the link for the given member.
06bc494ca11e Initial load
duke
parents:
diff changeset
   883
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   884
    public Content getDocLink(LinkInfoImpl.Kind context, TypeElement typeElement, Element element,
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   885
            CharSequence label, boolean strong) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   886
        return getDocLink(context, typeElement, element, label, strong, false);
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15725
diff changeset
   887
    }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   888
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   889
    public Content getDocLink(LinkInfoImpl.Kind context, TypeElement typeElement, Element element,
17569
ef80738645e2 8012178: Cleanup use of Util.escapeHtmlChars
jjg
parents: 17568
diff changeset
   890
            Content label, boolean strong) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   891
        return getDocLink(context, typeElement, element, label, strong, false);
17569
ef80738645e2 8012178: Cleanup use of Util.escapeHtmlChars
jjg
parents: 17568
diff changeset
   892
    }
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15725
diff changeset
   893
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15725
diff changeset
   894
   /**
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15725
diff changeset
   895
     * Return the link for the given member.
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15725
diff changeset
   896
     *
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15725
diff changeset
   897
     * @param context the id of the context where the link will be printed.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   898
     * @param typeElement the typeElement that we should link to.  This is not
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   899
                 necessarily equal to element.containingClass().  We may be
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   900
                 inheriting comments.
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   901
     * @param element the member being linked to.
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15725
diff changeset
   902
     * @param label the label for the link.
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15725
diff changeset
   903
     * @param strong true if the link should be strong.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   904
     * @param isProperty true if the element parameter is a JavaFX property.
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15725
diff changeset
   905
     * @return the link for the given member.
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15725
diff changeset
   906
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   907
    public Content getDocLink(LinkInfoImpl.Kind context, TypeElement typeElement, Element element,
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   908
            CharSequence label, boolean strong, boolean isProperty) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   909
        return getDocLink(context, typeElement, element, new StringContent(check(label)), strong, isProperty);
17569
ef80738645e2 8012178: Cleanup use of Util.escapeHtmlChars
jjg
parents: 17568
diff changeset
   910
    }
ef80738645e2 8012178: Cleanup use of Util.escapeHtmlChars
jjg
parents: 17568
diff changeset
   911
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   912
    CharSequence check(CharSequence s) {
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   913
        Matcher m = IMPROPER_HTML_CHARS.matcher(s);
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   914
        if (m.matches()) {
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   915
            throw new IllegalArgumentException(s.toString());
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   916
        }
17569
ef80738645e2 8012178: Cleanup use of Util.escapeHtmlChars
jjg
parents: 17568
diff changeset
   917
        return s;
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   918
    }
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   919
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   920
    public Content getDocLink(LinkInfoImpl.Kind context, TypeElement typeElement, Element element,
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   921
            Content label, boolean strong, boolean isProperty) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   922
        if (! (utils.isIncluded(element) || utils.isLinkable(typeElement))) {
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   923
            return label;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   924
        } else if (utils.isExecutableElement(element)) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   925
            ExecutableElement ee = (ExecutableElement)element;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   926
            return getLink(new LinkInfoImpl(configuration, context, typeElement)
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   927
                .label(label)
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47849
diff changeset
   928
                .where(links.getName(getAnchor(ee, isProperty)))
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   929
                .strong(strong));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   930
        } else if (utils.isVariableElement(element) || utils.isTypeElement(element)) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   931
            return getLink(new LinkInfoImpl(configuration, context, typeElement)
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   932
                .label(label)
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47849
diff changeset
   933
                .where(links.getName(element.getSimpleName().toString()))
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   934
                .strong(strong));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   935
        } else {
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   936
            return label;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   937
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   938
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   939
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   940
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   941
     * Return the link for the given member.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   942
     *
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   943
     * @param context the id of the context where the link will be added
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   944
     * @param typeElement the typeElement that we should link to.  This is not
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   945
                 necessarily equal to element.containingClass().  We may be
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   946
                 inheriting comments
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   947
     * @param element the member being linked to
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   948
     * @param label the label for the link
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   949
     * @return the link for the given member
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   950
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   951
    public Content getDocLink(LinkInfoImpl.Kind context, TypeElement typeElement, Element element,
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   952
            Content label) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   953
        if (! (utils.isIncluded(element) || utils.isLinkable(typeElement))) {
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   954
            return label;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   955
        } else if (utils.isExecutableElement(element)) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   956
            ExecutableElement emd = (ExecutableElement) element;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   957
            return getLink(new LinkInfoImpl(configuration, context, typeElement)
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   958
                .label(label)
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47849
diff changeset
   959
                .where(links.getName(getAnchor(emd))));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   960
        } else if (utils.isVariableElement(element) || utils.isTypeElement(element)) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   961
            return getLink(new LinkInfoImpl(configuration, context, typeElement)
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47849
diff changeset
   962
                .label(label).where(links.getName(element.getSimpleName().toString())));
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   963
        } else {
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
   964
            return label;
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   965
        }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   966
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   967
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   968
    public String getAnchor(ExecutableElement executableElement) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   969
        return getAnchor(executableElement, false);
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15725
diff changeset
   970
    }
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15725
diff changeset
   971
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   972
    public String getAnchor(ExecutableElement executableElement, boolean isProperty) {
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15725
diff changeset
   973
        if (isProperty) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   974
            return executableElement.getSimpleName().toString();
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15725
diff changeset
   975
        }
47328
d18df41954ba 8187521: In some corner cases the javadoc tool can reuse id attribute
jjg
parents: 47300
diff changeset
   976
        String member = anchorName(executableElement);
d18df41954ba 8187521: In some corner cases the javadoc tool can reuse id attribute
jjg
parents: 47300
diff changeset
   977
        String erasedSignature = utils.makeSignature(executableElement, true, true);
d18df41954ba 8187521: In some corner cases the javadoc tool can reuse id attribute
jjg
parents: 47300
diff changeset
   978
        return member + erasedSignature;
d18df41954ba 8187521: In some corner cases the javadoc tool can reuse id attribute
jjg
parents: 47300
diff changeset
   979
    }
d18df41954ba 8187521: In some corner cases the javadoc tool can reuse id attribute
jjg
parents: 47300
diff changeset
   980
d18df41954ba 8187521: In some corner cases the javadoc tool can reuse id attribute
jjg
parents: 47300
diff changeset
   981
    public String anchorName(Element member) {
d18df41954ba 8187521: In some corner cases the javadoc tool can reuse id attribute
jjg
parents: 47300
diff changeset
   982
        if (member.getKind() == ElementKind.CONSTRUCTOR
d18df41954ba 8187521: In some corner cases the javadoc tool can reuse id attribute
jjg
parents: 47300
diff changeset
   983
                && configuration.isOutputHtml5()) {
d18df41954ba 8187521: In some corner cases the javadoc tool can reuse id attribute
jjg
parents: 47300
diff changeset
   984
            return "<init>";
d18df41954ba 8187521: In some corner cases the javadoc tool can reuse id attribute
jjg
parents: 47300
diff changeset
   985
        } else {
d18df41954ba 8187521: In some corner cases the javadoc tool can reuse id attribute
jjg
parents: 47300
diff changeset
   986
            return utils.getSimpleName(member);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   987
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   988
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   989
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   990
    public Content seeTagToContent(Element element, DocTree see) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   991
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   992
        Kind kind = see.getKind();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   993
        if (!(kind == LINK || kind == SEE || kind == LINK_PLAIN)) {
17568
d9691936f5f9 8012177: HTMLDocletWriter methods should generate Content, not Strings
jjg
parents: 17567
diff changeset
   994
            return new ContentBuilder();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   995
        }
14266
69453558960d 8000673: remove dead code from HtmlWriter and subtypes
jjg
parents: 14265
diff changeset
   996
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   997
        CommentHelper ch = utils.getCommentHelper(element);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   998
        String tagName = ch.getTagName(see);
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
   999
        String seetext = replaceDocRootDir(utils.normalizeNewlines(ch.getText(see)).toString());
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1000
        // Check if @see is an href or "string"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1001
        if (seetext.startsWith("<") || seetext.startsWith("\"")) {
17568
d9691936f5f9 8012177: HTMLDocletWriter methods should generate Content, not Strings
jjg
parents: 17567
diff changeset
  1002
            return new RawHtml(seetext);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1003
        }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1004
        boolean isLinkPlain = kind == LINK_PLAIN;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1005
        Content label = plainOrCode(isLinkPlain, new RawHtml(ch.getLabel(configuration, see)));
14266
69453558960d 8000673: remove dead code from HtmlWriter and subtypes
jjg
parents: 14265
diff changeset
  1006
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1007
        //The text from the @see tag.  We will output this text when a label is not specified.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1008
        Content text = plainOrCode(kind == LINK_PLAIN, new RawHtml(seetext));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1009
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1010
        TypeElement refClass = ch.getReferencedClass(configuration, see);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1011
        String refClassName =  ch.getReferencedClassName(configuration, see);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1012
        Element refMem =       ch.getReferencedMember(configuration, see);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1013
        String refMemName =    ch.getReferencedMemberName(see);
14266
69453558960d 8000673: remove dead code from HtmlWriter and subtypes
jjg
parents: 14265
diff changeset
  1014
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1015
        if (refMemName == null && refMem != null) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1016
            refMemName = refMem.toString();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1017
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1018
        if (refClass == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1019
            //@see is not referencing an included class
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1020
            PackageElement refPackage = ch.getReferencedPackage(configuration, see);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1021
            if (refPackage != null && utils.isIncluded(refPackage)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1022
                //@see is referencing an included package
14266
69453558960d 8000673: remove dead code from HtmlWriter and subtypes
jjg
parents: 14265
diff changeset
  1023
                if (label.isEmpty())
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1024
                    label = plainOrCode(isLinkPlain,
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
  1025
                            new StringContent(refPackage.getQualifiedName()));
17568
d9691936f5f9 8012177: HTMLDocletWriter methods should generate Content, not Strings
jjg
parents: 17567
diff changeset
  1026
                return getPackageLink(refPackage, label);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1027
            } else {
48295
c79d31ba84b9 8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents: 48029
diff changeset
  1028
                // @see is not referencing an included class, module or package. Check for cross links.
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
  1029
                Content classCrossLink;
48295
c79d31ba84b9 8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents: 48029
diff changeset
  1030
                DocLink elementCrossLink = (configuration.extern.isModule(refClassName))
c79d31ba84b9 8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents: 48029
diff changeset
  1031
                        ? getCrossModuleLink(refClassName) : getCrossPackageLink(refClassName);
c79d31ba84b9 8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents: 48029
diff changeset
  1032
                if (elementCrossLink != null) {
c79d31ba84b9 8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents: 48029
diff changeset
  1033
                    // Element cross link found
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 48295
diff changeset
  1034
                    return links.createLink(elementCrossLink,
48295
c79d31ba84b9 8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents: 48029
diff changeset
  1035
                            (label.isEmpty() ? text : label), true);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1036
                } else if ((classCrossLink = getCrossClassLink(refClassName,
47851
6a9bb4f77d50 8190822: Remove dead code that could lead to invalid HTML
jjg
parents: 47850
diff changeset
  1037
                        refMemName, label, false, !isLinkPlain)) != null) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1038
                    // Class cross link found (possibly to a member in the class)
17568
d9691936f5f9 8012177: HTMLDocletWriter methods should generate Content, not Strings
jjg
parents: 17567
diff changeset
  1039
                    return classCrossLink;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1040
                } else {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1041
                    // No cross link found so print warning
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
  1042
                    messages.warning(ch.getDocTreePath(see),
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1043
                            "doclet.see.class_or_package_not_found",
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1044
                            "@" + tagName,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1045
                            seetext);
17568
d9691936f5f9 8012177: HTMLDocletWriter methods should generate Content, not Strings
jjg
parents: 17567
diff changeset
  1046
                    return (label.isEmpty() ? text: label);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1047
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1048
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1049
        } else if (refMemName == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1050
            // Must be a class reference since refClass is not null and refMemName is null.
14266
69453558960d 8000673: remove dead code from HtmlWriter and subtypes
jjg
parents: 14265
diff changeset
  1051
            if (label.isEmpty()) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1052
                /*
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1053
                 * it seems to me this is the right thing to do, but it causes comparator failures.
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1054
                 */
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1055
                if (!configuration.backwardCompatibility) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1056
                    StringContent content = utils.isEnclosingPackageIncluded(refClass)
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1057
                            ? new StringContent(utils.getSimpleName(refClass))
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1058
                            : new StringContent(utils.getFullyQualifiedName(refClass));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1059
                    label = plainOrCode(isLinkPlain, content);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1060
                } else {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1061
                    label = plainOrCode(isLinkPlain,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1062
                            new StringContent(utils.getSimpleName(refClass)));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1063
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1064
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1065
            }
17561
9f3505f35da9 8011651: simplify LinkInfoImpl API
jjg
parents: 17560
diff changeset
  1066
            return getLink(new LinkInfoImpl(configuration, LinkInfoImpl.Kind.DEFAULT, refClass)
17568
d9691936f5f9 8012177: HTMLDocletWriter methods should generate Content, not Strings
jjg
parents: 17567
diff changeset
  1067
                    .label(label));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1068
        } else if (refMem == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1069
            // Must be a member reference since refClass is not null and refMemName is not null.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1070
            // However, refMem is null, so this referenced member does not exist.
17568
d9691936f5f9 8012177: HTMLDocletWriter methods should generate Content, not Strings
jjg
parents: 17567
diff changeset
  1071
            return (label.isEmpty() ? text: label);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1072
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1073
            // Must be a member reference since refClass is not null and refMemName is not null.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1074
            // refMem is not null, so this @see tag must be referencing a valid member.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1075
            TypeElement containing = utils.getEnclosingTypeElement(refMem);
47395
2ea4edfdef8e 8157000: Do not generate javadoc for overridden method with no spec change
ksrini
parents: 47328
diff changeset
  1076
2ea4edfdef8e 8157000: Do not generate javadoc for overridden method with no spec change
ksrini
parents: 47328
diff changeset
  1077
            // Find the enclosing type where the method is actually visible
2ea4edfdef8e 8157000: Do not generate javadoc for overridden method with no spec change
ksrini
parents: 47328
diff changeset
  1078
            // in the inheritance hierarchy.
49879
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1079
            ExecutableElement overriddenMethod = null;
47395
2ea4edfdef8e 8157000: Do not generate javadoc for overridden method with no spec change
ksrini
parents: 47328
diff changeset
  1080
            if (refMem.getKind() == ElementKind.METHOD) {
49879
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1081
                VisibleMemberTable vmt = configuration.getVisibleMemberTable(containing);
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1082
                overriddenMethod = vmt.getOverriddenMethod((ExecutableElement)refMem);
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1083
47395
2ea4edfdef8e 8157000: Do not generate javadoc for overridden method with no spec change
ksrini
parents: 47328
diff changeset
  1084
                if (overriddenMethod != null)
2ea4edfdef8e 8157000: Do not generate javadoc for overridden method with no spec change
ksrini
parents: 47328
diff changeset
  1085
                    containing = utils.getEnclosingTypeElement(overriddenMethod);
2ea4edfdef8e 8157000: Do not generate javadoc for overridden method with no spec change
ksrini
parents: 47328
diff changeset
  1086
            }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1087
            if (ch.getText(see).trim().startsWith("#") &&
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1088
                ! (utils.isPublic(containing) || utils.isLinkable(containing))) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1089
                // Since the link is relative and the holder is not even being
06bc494ca11e Initial load
duke
parents:
diff changeset
  1090
                // documented, this must be an inherited link.  Redirect it.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1091
                // The current class either overrides the referenced member or
06bc494ca11e Initial load
duke
parents:
diff changeset
  1092
                // inherits it automatically.
3891
69ac41cb327b 5093723: REGRESSION: ClassCastException in SingleIndexWriter
jjg
parents: 2321
diff changeset
  1093
                if (this instanceof ClassWriterImpl) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1094
                    containing = ((ClassWriterImpl) this).getTypeElement();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1095
                } else if (!utils.isPublic(containing)) {
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
  1096
                    messages.warning(
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1097
                        ch.getDocTreePath(see), "doclet.see.class_or_package_not_accessible",
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1098
                        tagName, utils.getFullyQualifiedName(containing));
3891
69ac41cb327b 5093723: REGRESSION: ClassCastException in SingleIndexWriter
jjg
parents: 2321
diff changeset
  1099
                } else {
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
  1100
                    messages.warning(
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1101
                        ch.getDocTreePath(see), "doclet.see.class_or_package_not_found",
3891
69ac41cb327b 5093723: REGRESSION: ClassCastException in SingleIndexWriter
jjg
parents: 2321
diff changeset
  1102
                        tagName, seetext);
69ac41cb327b 5093723: REGRESSION: ClassCastException in SingleIndexWriter
jjg
parents: 2321
diff changeset
  1103
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1104
            }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1105
            if (configuration.currentTypeElement != containing) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1106
                refMemName = (utils.isConstructor(refMem))
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1107
                        ? refMemName
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1108
                        : utils.getSimpleName(containing) + "." + refMemName;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1109
            }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1110
            if (utils.isExecutableElement(refMem)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1111
                if (refMemName.indexOf('(') < 0) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1112
                    refMemName += utils.makeSignature((ExecutableElement)refMem, true);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1113
                }
49879
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1114
                if (overriddenMethod != null) {
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1115
                    // The method to actually link.
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1116
                    refMem = overriddenMethod;
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1117
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1118
            }
14266
69453558960d 8000673: remove dead code from HtmlWriter and subtypes
jjg
parents: 14265
diff changeset
  1119
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1120
            text = plainOrCode(kind == LINK_PLAIN, new StringContent(refMemName));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1121
17558
eee4ccf66cfd 8010440: Replace int constants in LinkInfoImpl with enum
jjg
parents: 17547
diff changeset
  1122
            return getDocLink(LinkInfoImpl.Kind.SEE_TAG, containing,
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1123
                    refMem, (label.isEmpty() ? text: label), false);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1124
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1125
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1126
17560
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
  1127
    private Content plainOrCode(boolean plain, Content body) {
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
  1128
        return (plain || body.isEmpty()) ? body : HtmlTree.CODE(body);
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
  1129
    }
9f6771abbd1a 8011650: reduce use of RawHtml nodes in doclet
jjg
parents: 17559
diff changeset
  1130
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1131
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1132
     * Add the inline comment.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1133
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1134
     * @param element the Element for which the inline comment will be added
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1135
     * @param tag the inline tag to be added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1136
     * @param htmltree the content tree to which the comment will be added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1137
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1138
    public void addInlineComment(Element element, DocTree tag, Content htmltree) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1139
        CommentHelper ch = utils.getCommentHelper(element);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1140
        List<? extends DocTree> description = ch.getDescription(configuration, tag);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1141
        addCommentTags(element, tag, description, false, false, htmltree);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1142
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1143
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1144
    /**
42816
3638773ff1b0 8162674: change javadoc output text and style emitted by for-removal deprecations
bpatel
parents: 42408
diff changeset
  1145
     * Get the deprecated phrase as content.
3638773ff1b0 8162674: change javadoc output text and style emitted by for-removal deprecations
bpatel
parents: 42408
diff changeset
  1146
     *
3638773ff1b0 8162674: change javadoc output text and style emitted by for-removal deprecations
bpatel
parents: 42408
diff changeset
  1147
     * @param e the Element for which the inline deprecated comment will be added
3638773ff1b0 8162674: change javadoc output text and style emitted by for-removal deprecations
bpatel
parents: 42408
diff changeset
  1148
     * @return a content tree for the deprecated phrase.
3638773ff1b0 8162674: change javadoc output text and style emitted by for-removal deprecations
bpatel
parents: 42408
diff changeset
  1149
     */
3638773ff1b0 8162674: change javadoc output text and style emitted by for-removal deprecations
bpatel
parents: 42408
diff changeset
  1150
    public Content getDeprecatedPhrase(Element e) {
3638773ff1b0 8162674: change javadoc output text and style emitted by for-removal deprecations
bpatel
parents: 42408
diff changeset
  1151
        return (utils.isDeprecatedForRemoval(e))
3638773ff1b0 8162674: change javadoc output text and style emitted by for-removal deprecations
bpatel
parents: 42408
diff changeset
  1152
                ? contents.deprecatedForRemovalPhrase
3638773ff1b0 8162674: change javadoc output text and style emitted by for-removal deprecations
bpatel
parents: 42408
diff changeset
  1153
                : contents.deprecatedPhrase;
3638773ff1b0 8162674: change javadoc output text and style emitted by for-removal deprecations
bpatel
parents: 42408
diff changeset
  1154
    }
3638773ff1b0 8162674: change javadoc output text and style emitted by for-removal deprecations
bpatel
parents: 42408
diff changeset
  1155
3638773ff1b0 8162674: change javadoc output text and style emitted by for-removal deprecations
bpatel
parents: 42408
diff changeset
  1156
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1157
     * Add the inline deprecated comment.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1158
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1159
     * @param e the Element for which the inline deprecated comment will be added
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1160
     * @param tag the inline tag to be added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1161
     * @param htmltree the content tree to which the comment will be added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1162
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1163
    public void addInlineDeprecatedComment(Element e, DocTree tag, Content htmltree) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1164
        CommentHelper ch = utils.getCommentHelper(e);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1165
        addCommentTags(e, ch.getBody(configuration, tag), true, false, htmltree);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1166
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1167
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1168
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1169
     * Adds the summary content.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1170
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1171
     * @param element the Element for which the summary will be generated
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1172
     * @param htmltree the documentation tree to which the summary will be added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1173
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1174
    public void addSummaryComment(Element element, Content htmltree) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1175
        addSummaryComment(element, utils.getFirstSentenceTrees(element), htmltree);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1176
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1177
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1178
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1179
     * Adds the summary content.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1180
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1181
     * @param element the Element for which the summary will be generated
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1182
     * @param firstSentenceTags the first sentence tags for the doc
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1183
     * @param htmltree the documentation tree to which the summary will be added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1184
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1185
    public void addSummaryComment(Element element, List<? extends DocTree> firstSentenceTags, Content htmltree) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1186
        addCommentTags(element, firstSentenceTags, false, true, htmltree);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1187
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1188
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1189
    public void addSummaryDeprecatedComment(Element element, DocTree tag, Content htmltree) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1190
        CommentHelper ch = utils.getCommentHelper(element);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1191
        List<? extends DocTree> body = ch.getBody(configuration, tag);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1192
        addCommentTags(element, ch.getFirstSentenceTrees(configuration, body), true, true, htmltree);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1193
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1194
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1195
    /**
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1196
     * Adds the inline comment.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1197
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1198
     * @param element the Element for which the inline comments will be generated
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1199
     * @param htmltree the documentation tree to which the inline comments will be added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1200
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1201
    public void addInlineComment(Element element, Content htmltree) {
41452
ddaef4bba083 8165991: Fix DocTreeFactory newDocCommentTree
ksrini
parents: 41157
diff changeset
  1202
        addCommentTags(element, utils.getFullBody(element), false, false, htmltree);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1203
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1204
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1205
    /**
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1206
     * Adds the comment tags.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1207
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1208
     * @param element the Element for which the comment tags will be generated
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1209
     * @param tags the first sentence tags for the doc
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1210
     * @param depr true if it is deprecated
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14266
diff changeset
  1211
     * @param first true if the first sentence tags should be added
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1212
     * @param htmltree the documentation tree to which the comment tags will be added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1213
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1214
    private void addCommentTags(Element element, List<? extends DocTree> tags, boolean depr,
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1215
            boolean first, Content htmltree) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1216
        addCommentTags(element, null, tags, depr, first, htmltree);
17547
40f2f9a5a445 8008768: Using {@inheritDoc} in simple tag defined via -tag fails
jjg
parents: 16964
diff changeset
  1217
    }
40f2f9a5a445 8008768: Using {@inheritDoc} in simple tag defined via -tag fails
jjg
parents: 16964
diff changeset
  1218
40f2f9a5a445 8008768: Using {@inheritDoc} in simple tag defined via -tag fails
jjg
parents: 16964
diff changeset
  1219
    /**
40f2f9a5a445 8008768: Using {@inheritDoc} in simple tag defined via -tag fails
jjg
parents: 16964
diff changeset
  1220
     * Adds the comment tags.
40f2f9a5a445 8008768: Using {@inheritDoc} in simple tag defined via -tag fails
jjg
parents: 16964
diff changeset
  1221
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1222
     * @param element for which the comment tags will be generated
17547
40f2f9a5a445 8008768: Using {@inheritDoc} in simple tag defined via -tag fails
jjg
parents: 16964
diff changeset
  1223
     * @param holderTag the block tag context for the inline tags
40f2f9a5a445 8008768: Using {@inheritDoc} in simple tag defined via -tag fails
jjg
parents: 16964
diff changeset
  1224
     * @param tags the first sentence tags for the doc
40f2f9a5a445 8008768: Using {@inheritDoc} in simple tag defined via -tag fails
jjg
parents: 16964
diff changeset
  1225
     * @param depr true if it is deprecated
40f2f9a5a445 8008768: Using {@inheritDoc} in simple tag defined via -tag fails
jjg
parents: 16964
diff changeset
  1226
     * @param first true if the first sentence tags should be added
40f2f9a5a445 8008768: Using {@inheritDoc} in simple tag defined via -tag fails
jjg
parents: 16964
diff changeset
  1227
     * @param htmltree the documentation tree to which the comment tags will be added
40f2f9a5a445 8008768: Using {@inheritDoc} in simple tag defined via -tag fails
jjg
parents: 16964
diff changeset
  1228
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1229
    private void addCommentTags(Element element, DocTree holderTag, List<? extends DocTree> tags, boolean depr,
17547
40f2f9a5a445 8008768: Using {@inheritDoc} in simple tag defined via -tag fails
jjg
parents: 16964
diff changeset
  1230
            boolean first, Content htmltree) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1231
        if(configuration.nocomment){
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1232
            return;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1233
        }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1234
        Content div;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1235
        Content result = commentTagsToContent(null, element, tags, first);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1236
        if (depr) {
47300
a905ce398074 8074407: javadoc: using <pre> after @deprecated tag causes warnings
bpatel
parents: 47216
diff changeset
  1237
            div = HtmlTree.DIV(HtmlStyle.deprecationComment, result);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1238
            htmltree.addContent(div);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1239
        }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1240
        else {
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1241
            div = HtmlTree.DIV(HtmlStyle.block, result);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1242
            htmltree.addContent(div);
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1243
        }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1244
        if (tags.isEmpty()) {
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
  1245
            htmltree.addContent(Contents.SPACE);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1246
        }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1247
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1248
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1249
    boolean ignoreNonInlineTag(DocTree dtree) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1250
        Name name = null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1251
        if (dtree.getKind() == Kind.START_ELEMENT) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1252
            StartElementTree setree = (StartElementTree)dtree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1253
            name = setree.getName();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1254
        } else if (dtree.getKind() == Kind.END_ELEMENT) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1255
            EndElementTree eetree = (EndElementTree)dtree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1256
            name = eetree.getName();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1257
        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1258
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1259
        if (name != null) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1260
            com.sun.tools.doclint.HtmlTag htmlTag = com.sun.tools.doclint.HtmlTag.get(name);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1261
            if (htmlTag != null &&
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1262
                    htmlTag.blockType != com.sun.tools.doclint.HtmlTag.BlockType.INLINE) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1263
                return true;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1264
            }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1265
        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1266
        return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1267
    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1268
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1269
    boolean isAllWhiteSpace(String body) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1270
        for (int i = 0 ; i < body.length(); i++) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1271
            if (!Character.isWhitespace(body.charAt(i)))
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1272
                return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1273
        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1274
        return true;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1275
    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1276
45860
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1277
    // Notify the next DocTree handler to take necessary action
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1278
    private boolean commentRemoved = false;
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1279
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1280
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1281
     * Converts inline tags and text to text strings, expanding the
06bc494ca11e Initial load
duke
parents:
diff changeset
  1282
     * inline tags along the way.  Called wherever text can contain
06bc494ca11e Initial load
duke
parents:
diff changeset
  1283
     * an inline tag, such as in comments or in free-form text arguments
06bc494ca11e Initial load
duke
parents:
diff changeset
  1284
     * to non-inline tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1285
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1286
     * @param holderTag    specific tag where comment resides
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1287
     * @param element    specific element where comment resides
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1288
     * @param tags   array of text tags and inline tags (often alternating)
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1289
               present in the text of interest for this element
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1290
     * @param isFirstSentence  true if text is first sentence
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1291
     * @return a Content object
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1292
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1293
    public Content commentTagsToContent(DocTree holderTag, Element element,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1294
            List<? extends DocTree> tags, boolean isFirstSentence) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1295
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1296
        final Content result = new ContentBuilder() {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1297
            @Override
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
  1298
            public void addContent(CharSequence text) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1299
                super.addContent(utils.normalizeNewlines(text));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1300
            }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1301
        };
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1302
        CommentHelper ch = utils.getCommentHelper(element);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1303
        // Array of all possible inline tags for this javadoc run
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1304
        configuration.tagletManager.checkTags(utils, element, tags, true);
45860
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1305
        commentRemoved = false;
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1306
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1307
        for (ListIterator<? extends DocTree> iterator = tags.listIterator(); iterator.hasNext();) {
45860
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1308
            boolean isFirstNode = !iterator.hasPrevious();
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1309
            DocTree tag = iterator.next();
45860
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1310
            boolean isLastNode  = !iterator.hasNext();
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1311
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1312
            if (isFirstSentence) {
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1313
                // Ignore block tags
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1314
                if (ignoreNonInlineTag(tag))
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1315
                    continue;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1316
45860
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1317
                // Ignore any trailing whitespace OR whitespace after removed html comment
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1318
                if ((isLastNode || commentRemoved)
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1319
                        && tag.getKind() == TEXT
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1320
                        && isAllWhiteSpace(ch.getText(tag)))
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1321
                    continue;
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1322
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1323
                // Ignore any leading html comments
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1324
                if ((isFirstNode || commentRemoved) && tag.getKind() == COMMENT) {
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1325
                    commentRemoved = true;
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1326
                    continue;
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1327
                }
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1328
            }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1329
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1330
            boolean allDone = new SimpleDocTreeVisitor<Boolean, Content>() {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1331
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1332
                private boolean inAnAtag() {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1333
                    if (utils.isStartElement(tag)) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1334
                        StartElementTree st = (StartElementTree)tag;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1335
                        Name name = st.getName();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1336
                        if (name != null) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1337
                            com.sun.tools.doclint.HtmlTag htag =
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1338
                                    com.sun.tools.doclint.HtmlTag.get(name);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1339
                            return htag != null && htag.equals(com.sun.tools.doclint.HtmlTag.A);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1340
                        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1341
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1342
                    return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1343
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1344
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1345
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1346
                public Boolean visitAttribute(AttributeTree node, Content c) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1347
                    StringBuilder sb = new StringBuilder(SPACER).append(node.getName());
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1348
                    if (node.getValueKind() == ValueKind.EMPTY) {
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
  1349
                        result.addContent(sb);
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1350
                        return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1351
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1352
                    sb.append("=");
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1353
                    String quote;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1354
                    switch (node.getValueKind()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1355
                        case DOUBLE:
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1356
                            quote = "\"";
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1357
                            break;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1358
                        case SINGLE:
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1359
                            quote = "\'";
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1360
                            break;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1361
                        default:
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1362
                            quote = "";
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1363
                            break;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1364
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1365
                    sb.append(quote);
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
  1366
                    result.addContent(sb);
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1367
                    Content docRootContent = new ContentBuilder();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1368
48655
e1876e6b57b6 8195805: Doclet incorrectly updates all attributes in <a> tags when relocating links
jjg
parents: 48654
diff changeset
  1369
                    boolean isHRef = inAnAtag() && node.getName().toString().equalsIgnoreCase("href");
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1370
                    for (DocTree dt : node.getValue()) {
48655
e1876e6b57b6 8195805: Doclet incorrectly updates all attributes in <a> tags when relocating links
jjg
parents: 48654
diff changeset
  1371
                        if (utils.isText(dt) && isHRef) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1372
                            String text = ((TextTree) dt).getBody();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1373
                            if (text.startsWith("/..") && !configuration.docrootparent.isEmpty()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1374
                                result.addContent(configuration.docrootparent);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1375
                                docRootContent = new ContentBuilder();
45860
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1376
                                result.addContent(textCleanup(text.substring(3), isLastNode));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1377
                            } else {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1378
                                if (!docRootContent.isEmpty()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1379
                                    docRootContent = copyDocRootContent(docRootContent);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1380
                                } else {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1381
                                    text = redirectRelativeLinks(element, (TextTree) dt);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1382
                                }
45860
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1383
                                result.addContent(textCleanup(text, isLastNode));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1384
                            }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1385
                        } else {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1386
                            docRootContent = copyDocRootContent(docRootContent);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1387
                            dt.accept(this, docRootContent);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1388
                        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1389
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1390
                    copyDocRootContent(docRootContent);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1391
                    result.addContent(quote);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1392
                    return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1393
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1394
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1395
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1396
                public Boolean visitComment(CommentTree node, Content c) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1397
                    result.addContent(new RawHtml(node.getBody()));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1398
                    return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1399
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1400
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1401
                private Content copyDocRootContent(Content content) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1402
                    if (!content.isEmpty()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1403
                        result.addContent(content);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1404
                        return new ContentBuilder();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1405
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1406
                    return content;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1407
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1408
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1409
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1410
                public Boolean visitDocRoot(DocRootTree node, Content c) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1411
                    Content docRootContent = TagletWriter.getInlineTagOutput(element,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1412
                            configuration.tagletManager,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1413
                            holderTag,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1414
                            node,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1415
                            getTagletWriterInstance(isFirstSentence));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1416
                    if (c != null) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1417
                        c.addContent(docRootContent);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1418
                    } else {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1419
                        result.addContent(docRootContent);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1420
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1421
                    return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1422
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1423
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1424
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1425
                public Boolean visitEndElement(EndElementTree node, Content c) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1426
                    RawHtml rawHtml = new RawHtml("</" + node.getName() + ">");
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1427
                    result.addContent(rawHtml);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1428
                    return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1429
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1430
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1431
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1432
                public Boolean visitEntity(EntityTree node, Content c) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1433
                    result.addContent(new RawHtml(node.toString()));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1434
                    return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1435
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1436
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1437
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1438
                public Boolean visitErroneous(ErroneousTree node, Content c) {
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
  1439
                    messages.warning(ch.getDocTreePath(node),
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1440
                            "doclet.tag.invalid_usage", node);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1441
                    result.addContent(new RawHtml(node.toString()));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1442
                    return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1443
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1444
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1445
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1446
                public Boolean visitInheritDoc(InheritDocTree node, Content c) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1447
                    Content output = TagletWriter.getInlineTagOutput(element,
22005
4270ada5dcd1 8025416: doclet not substituting {@docRoot} in some cases
bpatel
parents: 21494
diff changeset
  1448
                            configuration.tagletManager, holderTag,
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1449
                            tag, getTagletWriterInstance(isFirstSentence));
17574
044c7e1e4d53 8012308: Remove TagletOutput in favor of direct use of Content
jjg
parents: 17573
diff changeset
  1450
                    result.addContent(output);
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1451
                    // if we obtained the first sentence successfully, nothing more to do
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1452
                    return (isFirstSentence && !output.isEmpty());
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1453
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1454
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1455
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1456
                public Boolean visitIndex(IndexTree node, Content p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1457
                    Content output = TagletWriter.getInlineTagOutput(element,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1458
                            configuration.tagletManager, holderTag, tag,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1459
                            getTagletWriterInstance(isFirstSentence));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1460
                    if (output != null) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1461
                        result.addContent(output);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1462
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1463
                    return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1464
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1465
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1466
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1467
                public Boolean visitLink(LinkTree node, Content c) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1468
                    // we need to pass the DocTreeImpl here, so ignore node
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1469
                    result.addContent(seeTagToContent(element, tag));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1470
                    return false;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1471
                }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1472
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1473
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1474
                public Boolean visitLiteral(LiteralTree node, Content c) {
50116
cebd0673feeb 8203176: javadoc handles non-ASCII characters incorrectly.
jjg
parents: 49879
diff changeset
  1475
                    String s = node.getBody().getBody();
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1476
                    Content content = new StringContent(utils.normalizeNewlines(s));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1477
                    if (node.getKind() == CODE)
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1478
                        content = HtmlTree.CODE(content);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1479
                    result.addContent(content);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1480
                    return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1481
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1482
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1483
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1484
                public Boolean visitSee(SeeTree node, Content c) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1485
                    // we need to pass the DocTreeImpl here, so ignore node
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1486
                    result.addContent(seeTagToContent(element, tag));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1487
                    return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1488
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1489
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1490
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1491
                public Boolean visitStartElement(StartElementTree node, Content c) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1492
                    String text = "<" + node.getName();
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
  1493
                    RawHtml rawHtml = new RawHtml(utils.normalizeNewlines(text));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1494
                    result.addContent(rawHtml);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1495
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1496
                    for (DocTree dt : node.getAttributes()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1497
                        dt.accept(this, null);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1498
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1499
                    result.addContent(new RawHtml(node.isSelfClosing() ? "/>" : ">"));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1500
                    return false;
9608
385a828ba236 6553182: Need to modify javadoc doclet for GPL
bpatel
parents: 9606
diff changeset
  1501
                }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1502
46184
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents: 46080
diff changeset
  1503
                @Override
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents: 46080
diff changeset
  1504
                public Boolean visitSummary(SummaryTree node, Content c) {
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents: 46080
diff changeset
  1505
                    Content output = TagletWriter.getInlineTagOutput(element,
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents: 46080
diff changeset
  1506
                            configuration.tagletManager, holderTag, tag,
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents: 46080
diff changeset
  1507
                            getTagletWriterInstance(isFirstSentence));
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents: 46080
diff changeset
  1508
                    result.addContent(output);
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents: 46080
diff changeset
  1509
                    return false;
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents: 46080
diff changeset
  1510
                }
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents: 46080
diff changeset
  1511
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
  1512
                private CharSequence textCleanup(String text, boolean isLast) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1513
                    return textCleanup(text, isLast, false);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1514
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1515
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
  1516
                private CharSequence textCleanup(String text, boolean isLast, boolean trimLeader) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1517
                    if (trimLeader) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1518
                        text = removeLeadingWhitespace(text);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1519
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1520
                    if (isFirstSentence && isLast) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1521
                        text = removeTrailingWhitespace(text);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1522
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1523
                    text = utils.replaceTabs(text);
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
  1524
                    return utils.normalizeNewlines(text);
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1525
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1526
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1527
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1528
                public Boolean visitText(TextTree node, Content c) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1529
                    String text = node.getBody();
45860
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1530
                    result.addContent(new RawHtml(textCleanup(text, isLastNode, commentRemoved)));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1531
                    return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1532
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1533
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1534
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1535
                protected Boolean defaultAction(DocTree node, Content c) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1536
                    Content output = TagletWriter.getInlineTagOutput(element,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1537
                            configuration.tagletManager, holderTag, tag,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1538
                            getTagletWriterInstance(isFirstSentence));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1539
                    if (output != null) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1540
                        result.addContent(output);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1541
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1542
                    return false;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1543
                }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1544
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1545
            }.visit(tag, null);
45860
0952e2c6545a 8179704: doclet crashes with an empty package.html
ksrini
parents: 45417
diff changeset
  1546
            commentRemoved = false;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1547
            if (allDone)
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1548
                break;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1549
        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1550
        return result;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1551
    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1552
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1553
    private String removeTrailingWhitespace(String text) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1554
        char[] buf = text.toCharArray();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1555
        for (int i = buf.length - 1; i > 0 ; i--) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1556
            if (!Character.isWhitespace(buf[i]))
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1557
                return text.substring(0, i + 1);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1558
        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1559
        return text;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1560
    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1561
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1562
    private String removeLeadingWhitespace(String text) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1563
        char[] buf = text.toCharArray();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1564
        for (int i = 0; i < buf.length; i++) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1565
            if (!Character.isWhitespace(buf[i])) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1566
                return text.substring(i);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1567
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1568
        }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1569
        return text;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1570
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1571
06bc494ca11e Initial load
duke
parents:
diff changeset
  1572
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1573
     * Return true if relative links should not be redirected.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1574
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1575
     * @return Return true if a relative link should not be redirected.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1576
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1577
    private boolean shouldNotRedirectRelativeLinks() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1578
        return  this instanceof AnnotationTypeWriter ||
06bc494ca11e Initial load
duke
parents:
diff changeset
  1579
                this instanceof ClassWriter ||
06bc494ca11e Initial load
duke
parents:
diff changeset
  1580
                this instanceof PackageSummaryWriter;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1581
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1582
06bc494ca11e Initial load
duke
parents:
diff changeset
  1583
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1584
     * Suppose a piece of documentation has a relative link.  When you copy
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14266
diff changeset
  1585
     * that documentation to another place such as the index or class-use page,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1586
     * that relative link will no longer work.  We should redirect those links
06bc494ca11e Initial load
duke
parents:
diff changeset
  1587
     * so that they will work again.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1588
     * <p>
06bc494ca11e Initial load
duke
parents:
diff changeset
  1589
     * Here is the algorithm used to fix the link:
06bc494ca11e Initial load
duke
parents:
diff changeset
  1590
     * <p>
13844
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 9608
diff changeset
  1591
     * {@literal <relative link> => docRoot + <relative path to file> + <relative link> }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1592
     * <p>
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1593
     * For example, suppose DocletEnvironment has this link:
13844
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 9608
diff changeset
  1594
     * {@literal <a href="package-summary.html">The package Page</a> }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1595
     * <p>
06bc494ca11e Initial load
duke
parents:
diff changeset
  1596
     * If this link appeared in the index, we would redirect
06bc494ca11e Initial load
duke
parents:
diff changeset
  1597
     * the link like this:
06bc494ca11e Initial load
duke
parents:
diff changeset
  1598
     *
13844
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 9608
diff changeset
  1599
     * {@literal <a href="./com/sun/javadoc/package-summary.html">The package Page</a>}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1600
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1601
     * @param element the Element object whose documentation is being written.
49879
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1602
     * @param tt the text being written.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1603
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1604
     * @return the text, with all the relative links redirected to work.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1605
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1606
    private String redirectRelativeLinks(Element element, TextTree tt) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1607
        String text = tt.getBody();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1608
        if (element == null || utils.isOverviewElement(element) || shouldNotRedirectRelativeLinks()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1609
            return text;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1610
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1611
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1612
        DocPath redirectPathFromRoot = new SimpleElementVisitor9<DocPath, Void>() {
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1613
            @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1614
            public DocPath visitType(TypeElement e, Void p) {
48759
ffa68af7da87 8195795: Organize output files by module/package, not just package
jjg
parents: 48756
diff changeset
  1615
                return docPaths.forPackage(utils.containingPackage(e));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1616
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1617
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1618
            @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1619
            public DocPath visitPackage(PackageElement e, Void p) {
48759
ffa68af7da87 8195795: Organize output files by module/package, not just package
jjg
parents: 48756
diff changeset
  1620
                return docPaths.forPackage(e);
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1621
            }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1622
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1623
            @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1624
            public DocPath visitVariable(VariableElement e, Void p) {
48759
ffa68af7da87 8195795: Organize output files by module/package, not just package
jjg
parents: 48756
diff changeset
  1625
                return docPaths.forPackage(utils.containingPackage(e));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1626
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1627
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1628
            @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1629
            public DocPath visitExecutable(ExecutableElement e, Void p) {
48759
ffa68af7da87 8195795: Organize output files by module/package, not just package
jjg
parents: 48756
diff changeset
  1630
                return docPaths.forPackage(utils.containingPackage(e));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1631
            }
23123
fd8ad69ac7fe 6457406: javadoc doesn't handle <a href='http://...'> properly in producing index pages
yan
parents: 22163
diff changeset
  1632
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1633
            @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1634
            protected DocPath defaultAction(Element e, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1635
                return null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1636
            }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1637
        }.visit(element);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1638
        if (redirectPathFromRoot == null) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1639
            return text;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1640
        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1641
        String lower = Utils.toLowerCase(text);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1642
        if (!(lower.startsWith("mailto:")
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1643
                || lower.startsWith("http:")
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1644
                || lower.startsWith("https:")
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1645
                || lower.startsWith("file:"))) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1646
            text = "{@" + (new DocRootTaglet()).getName() + "}/"
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1647
                    + redirectPathFromRoot.resolve(text).getPath();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1648
            text = replaceDocRootDir(text);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1649
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1650
        return text;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1651
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1652
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 14542
diff changeset
  1653
    /**
9303
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 8631
diff changeset
  1654
     * According to
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 8631
diff changeset
  1655
     * <cite>The Java&trade; Language Specification</cite>,
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 8631
diff changeset
  1656
     * all the outer classes and static nested classes are core classes.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1657
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1658
    public boolean isCoreClass(TypeElement typeElement) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1659
        return utils.getEnclosingTypeElement(typeElement) == null || utils.isStatic(typeElement);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1660
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1661
06bc494ca11e Initial load
duke
parents:
diff changeset
  1662
    /**
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1663
     * Adds the annotation types for the given packageElement.
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1664
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1665
     * @param packageElement the package to write annotations for.
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1666
     * @param htmltree the documentation tree to which the annotation info will be
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1667
     *        added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1668
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1669
    public void addAnnotationInfo(PackageElement packageElement, Content htmltree) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1670
        addAnnotationInfo(packageElement, packageElement.getAnnotationMirrors(), htmltree);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1671
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1672
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1673
    /**
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1674
     * Add the annotation types of the executable receiver.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1675
     *
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1676
     * @param method the executable to write the receiver annotations for.
49879
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1677
     * @param descList a list of annotation mirrors.
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1678
     * @param htmltree the documentation tree to which the annotation info will be
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1679
     *        added
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1680
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1681
    public void addReceiverAnnotationInfo(ExecutableElement method, List<AnnotationMirror> descList,
16964
096de5815398 8005091: javadoc should be able to return the receiver type
bpatel
parents: 16319
diff changeset
  1682
            Content htmltree) {
096de5815398 8005091: javadoc should be able to return the receiver type
bpatel
parents: 16319
diff changeset
  1683
        addAnnotationInfo(0, method, descList, false, htmltree);
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1684
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1685
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1686
    /*
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1687
     * this is a hack to delay dealing with Annotations in the writers, the assumption
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1688
     * is that all necessary checks have been made to get here.
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1689
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1690
    public void addReceiverAnnotationInfo(ExecutableElement method, TypeMirror rcvrTypeMirror,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1691
            List<? extends AnnotationMirror> annotationMirrors, Content htmltree) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1692
        TypeMirror rcvrType = method.getReceiverType();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1693
        List<? extends AnnotationMirror> annotationMirrors1 = rcvrType.getAnnotationMirrors();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1694
        addAnnotationInfo(0, method, annotationMirrors1, false, htmltree);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1695
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1696
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1697
    /**
47849
0e38db7cf1cc 8190820: Introduce a new Head builder class
jjg
parents: 47848
diff changeset
  1698
     * Adds the annotation types for the given element.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1699
     *
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1700
     * @param element the package to write annotations for
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1701
     * @param htmltree the content tree to which the annotation types will be added
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1702
     */
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1703
    public void addAnnotationInfo(Element element, Content htmltree) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1704
        addAnnotationInfo(element, element.getAnnotationMirrors(), htmltree);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1705
    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1706
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1707
    /**
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1708
     * Add the annotatation types for the given element and parameter.
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1709
     *
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1710
     * @param indent the number of spaces to indent the parameters.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1711
     * @param element the element to write annotations for.
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1712
     * @param param the parameter to write annotations for.
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1713
     * @param tree the content tree to which the annotation types will be added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1714
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1715
    public boolean addAnnotationInfo(int indent, Element element, VariableElement param,
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1716
            Content tree) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1717
        return addAnnotationInfo(indent, element, param.getAnnotationMirrors(), false, tree);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1718
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1719
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1720
    /**
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1721
     * Adds the annotatation types for the given Element.
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1722
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1723
     * @param element the element to write annotations for.
49879
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1724
     * @param descList a list of annotation mirrors.
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1725
     * @param htmltree the documentation tree to which the annotation info will be
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1726
     *        added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1727
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1728
    private void addAnnotationInfo(Element element, List<? extends AnnotationMirror> descList,
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1729
            Content htmltree) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1730
        addAnnotationInfo(0, element, descList, true, htmltree);
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1731
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1732
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1733
    /**
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1734
     * Adds the annotation types for the given element.
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1735
     *
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1736
     * @param indent the number of extra spaces to indent the annotations.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1737
     * @param element the element to write annotations for.
49879
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1738
     * @param descList a list of annotation mirrors.
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1739
     * @param htmltree the documentation tree to which the annotation info will be
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1740
     *        added
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1741
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1742
    private boolean addAnnotationInfo(int indent, Element element,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1743
            List<? extends AnnotationMirror> descList, boolean lineBreak, Content htmltree) {
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1744
        List<Content> annotations = getAnnotations(indent, descList, lineBreak);
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1745
        String sep = "";
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1746
        if (annotations.isEmpty()) {
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1747
            return false;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1748
        }
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1749
        for (Content annotation: annotations) {
16964
096de5815398 8005091: javadoc should be able to return the receiver type
bpatel
parents: 16319
diff changeset
  1750
            htmltree.addContent(sep);
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1751
            htmltree.addContent(annotation);
31943
72b69ab429c9 8062647: Wrong indentation of arguments of annotated methods
igerasim
parents: 31297
diff changeset
  1752
            if (!lineBreak) {
72b69ab429c9 8062647: Wrong indentation of arguments of annotated methods
igerasim
parents: 31297
diff changeset
  1753
                sep = " ";
72b69ab429c9 8062647: Wrong indentation of arguments of annotated methods
igerasim
parents: 31297
diff changeset
  1754
            }
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1755
        }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1756
        return true;
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1757
    }
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1758
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
  1759
   /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1760
     * Return the string representations of the annotation types for
06bc494ca11e Initial load
duke
parents:
diff changeset
  1761
     * the given doc.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1762
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1763
     * @param indent the number of extra spaces to indent the annotations.
49879
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1764
     * @param descList a list of annotation mirrors.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1765
     * @param linkBreak if true, add new line between each member value.
49879
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1766
     * @return a list of strings representing the annotations being
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1767
     *         documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1768
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1769
    private List<Content> getAnnotations(int indent, List<? extends AnnotationMirror> descList, boolean linkBreak) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1770
        return getAnnotations(indent, descList, linkBreak, true);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1771
    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1772
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1773
    private List<Content> getAnnotations(int indent, AnnotationMirror amirror, boolean linkBreak) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1774
        List<AnnotationMirror> descList = new ArrayList<>();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1775
        descList.add(amirror);
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1776
        return getAnnotations(indent, descList, linkBreak, true);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1777
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1778
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1779
    /**
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1780
     * Return the string representations of the annotation types for
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1781
     * the given doc.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1782
     *
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1783
     * A {@code null} {@code elementType} indicates that all the
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1784
     * annotations should be returned without any filtering.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1785
     *
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1786
     * @param indent the number of extra spaces to indent the annotations.
49879
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1787
     * @param descList a list of annotation mirrors.
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1788
     * @param linkBreak if true, add new line between each member value.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1789
     * @param isJava5DeclarationLocation
49879
601277b1d582 8025091: VisibleMemberMap.java possible performance improvements
ksrini
parents: 49551
diff changeset
  1790
     * @return a list of strings representing the annotations being
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1791
     *         documented.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1792
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1793
    public List<Content> getAnnotations(int indent, List<? extends AnnotationMirror> descList,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1794
            boolean linkBreak, boolean isJava5DeclarationLocation) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22160
diff changeset
  1795
        List<Content> results = new ArrayList<>();
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1796
        ContentBuilder annotation;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1797
        for (AnnotationMirror aDesc : descList) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1798
            TypeElement annotationElement = (TypeElement)aDesc.getAnnotationType().asElement();
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1799
            // If an annotation is not documented, do not add it to the list. If
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1800
            // the annotation is of a repeatable type, and if it is not documented
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1801
            // and also if its container annotation is not documented, do not add it
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1802
            // to the list. If an annotation of a repeatable type is not documented
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1803
            // but its container is documented, it will be added to the list.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1804
            if (!utils.isDocumentedAnnotation(annotationElement) &&
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
  1805
                (!isAnnotationDocumented && !isContainerDocumented)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1806
                continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1807
            }
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1808
            /* TODO: check logic here to correctly handle declaration
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1809
             * and type annotations.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1810
            if  (utils.isDeclarationAnnotation(annotationElement, isJava5DeclarationLocation)) {
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1811
                continue;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15035
diff changeset
  1812
            }*/
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1813
            annotation = new ContentBuilder();
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1814
            isAnnotationDocumented = false;
14542
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
  1815
            LinkInfoImpl linkInfo = new LinkInfoImpl(configuration,
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1816
                                                     LinkInfoImpl.Kind.ANNOTATION, annotationElement);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1817
            Map<? extends ExecutableElement, ? extends AnnotationValue> pairs = aDesc.getElementValues();
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1818
            // If the annotation is synthesized, do not print the container.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1819
            if (utils.configuration.workArounds.isSynthesized(aDesc)) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1820
                for (ExecutableElement ee : pairs.keySet()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1821
                    AnnotationValue annotationValue = pairs.get(ee);
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22160
diff changeset
  1822
                    List<AnnotationValue> annotationTypeValues = new ArrayList<>();
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1823
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1824
                    new SimpleAnnotationValueVisitor9<Void, List<AnnotationValue>>() {
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1825
                        @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1826
                        public Void visitArray(List<? extends AnnotationValue> vals, List<AnnotationValue> p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1827
                            p.addAll(vals);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1828
                            return null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1829
                        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1830
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1831
                        @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1832
                        protected Void defaultAction(Object o, List<AnnotationValue> p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1833
                            p.add(annotationValue);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1834
                            return null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1835
                        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1836
                    }.visit(annotationValue, annotationTypeValues);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1837
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1838
                    String sep = "";
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1839
                    for (AnnotationValue av : annotationTypeValues) {
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1840
                        annotation.addContent(sep);
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1841
                        annotation.addContent(annotationValueToContent(av));
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1842
                        sep = " ";
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1843
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1844
                }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1845
            } else if (isAnnotationArray(pairs)) {
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1846
                // If the container has 1 or more value defined and if the
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1847
                // repeatable type annotation is not documented, do not print
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1848
                // the container.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1849
                if (pairs.size() == 1 && isAnnotationDocumented) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22160
diff changeset
  1850
                    List<AnnotationValue> annotationTypeValues = new ArrayList<>();
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1851
                    for (AnnotationValue a :  pairs.values()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1852
                        new SimpleAnnotationValueVisitor9<Void, List<AnnotationValue>>() {
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1853
                            @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1854
                            public Void visitArray(List<? extends AnnotationValue> vals, List<AnnotationValue> annotationTypeValues) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1855
                               for (AnnotationValue av : vals) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1856
                                   annotationTypeValues.add(av);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1857
                               }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1858
                               return null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1859
                            }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1860
                        }.visit(a, annotationTypeValues);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1861
                    }
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1862
                    String sep = "";
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1863
                    for (AnnotationValue av : annotationTypeValues) {
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1864
                        annotation.addContent(sep);
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1865
                        annotation.addContent(annotationValueToContent(av));
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1866
                        sep = " ";
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1867
                    }
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1868
                }
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1869
                // If the container has 1 or more value defined and if the
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1870
                // repeatable type annotation is not documented, print the container.
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1871
                else {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1872
                    addAnnotations(annotationElement, linkInfo, annotation, pairs,
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
  1873
                                   indent, false);
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1874
                }
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1875
            }
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1876
            else {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1877
                addAnnotations(annotationElement, linkInfo, annotation, pairs,
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
  1878
                               indent, linkBreak);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1879
            }
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1880
            annotation.addContent(linkBreak ? DocletConstants.NL : "");
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1881
            results.add(annotation);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1882
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1883
        return results;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1884
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1885
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1886
    /**
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1887
     * Add annotation to the annotation string.
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1888
     *
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1889
     * @param annotationDoc the annotation being documented
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1890
     * @param linkInfo the information about the link
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1891
     * @param annotation the annotation string to which the annotation will be added
48029
e9dab2492924 8185985: Html files in doc-files directories should be wrapped with standard header and footer
ksrini
parents: 47852
diff changeset
  1892
     * @param map annotation type element to annotation value pairs
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1893
     * @param indent the number of extra spaces to indent the annotations.
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1894
     * @param linkBreak if true, add new line between each member value
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1895
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1896
    private void addAnnotations(TypeElement annotationDoc, LinkInfoImpl linkInfo,
48029
e9dab2492924 8185985: Html files in doc-files directories should be wrapped with standard header and footer
ksrini
parents: 47852
diff changeset
  1897
                                ContentBuilder annotation,
e9dab2492924 8185985: Html files in doc-files directories should be wrapped with standard header and footer
ksrini
parents: 47852
diff changeset
  1898
                                Map<? extends ExecutableElement, ? extends AnnotationValue> map,
e9dab2492924 8185985: Html files in doc-files directories should be wrapped with standard header and footer
ksrini
parents: 47852
diff changeset
  1899
                                int indent, boolean linkBreak) {
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
  1900
        linkInfo.label = new StringContent("@");
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
  1901
        linkInfo.label.addContent(annotationDoc.getSimpleName());
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1902
        annotation.addContent(getLink(linkInfo));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1903
        if (!map.isEmpty()) {
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1904
            annotation.addContent("(");
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1905
            boolean isFirst = true;
36038
39c5445924b9 6469561: javadoc for annotation types should not display "public abstract" modifiers on methods
darcy
parents: 35426
diff changeset
  1906
            Set<? extends ExecutableElement> keys = map.keySet();
39c5445924b9 6469561: javadoc for annotation types should not display "public abstract" modifiers on methods
darcy
parents: 35426
diff changeset
  1907
            boolean multipleValues = keys.size() > 1;
39c5445924b9 6469561: javadoc for annotation types should not display "public abstract" modifiers on methods
darcy
parents: 35426
diff changeset
  1908
            for (ExecutableElement element : keys) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1909
                if (isFirst) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1910
                    isFirst = false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1911
                } else {
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1912
                    annotation.addContent(",");
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1913
                    if (linkBreak) {
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1914
                        annotation.addContent(DocletConstants.NL);
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
  1915
                        int spaces = annotationDoc.getSimpleName().length() + 2;
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1916
                        for (int k = 0; k < (spaces + indent); k++) {
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1917
                            annotation.addContent(" ");
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1918
                        }
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1919
                    }
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1920
                }
36038
39c5445924b9 6469561: javadoc for annotation types should not display "public abstract" modifiers on methods
darcy
parents: 35426
diff changeset
  1921
                String simpleName = element.getSimpleName().toString();
39c5445924b9 6469561: javadoc for annotation types should not display "public abstract" modifiers on methods
darcy
parents: 35426
diff changeset
  1922
                if (multipleValues || !"value".equals(simpleName)) { // Omit "value=" where unnecessary
39c5445924b9 6469561: javadoc for annotation types should not display "public abstract" modifiers on methods
darcy
parents: 35426
diff changeset
  1923
                    annotation.addContent(getDocLink(LinkInfoImpl.Kind.ANNOTATION,
39c5445924b9 6469561: javadoc for annotation types should not display "public abstract" modifiers on methods
darcy
parents: 35426
diff changeset
  1924
                                                     element, simpleName, false));
39c5445924b9 6469561: javadoc for annotation types should not display "public abstract" modifiers on methods
darcy
parents: 35426
diff changeset
  1925
                    annotation.addContent("=");
39c5445924b9 6469561: javadoc for annotation types should not display "public abstract" modifiers on methods
darcy
parents: 35426
diff changeset
  1926
                }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1927
                AnnotationValue annotationValue = map.get(element);
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22160
diff changeset
  1928
                List<AnnotationValue> annotationTypeValues = new ArrayList<>();
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1929
                new SimpleAnnotationValueVisitor9<Void, AnnotationValue>() {
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1930
                    @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1931
                    public Void visitArray(List<? extends AnnotationValue> vals, AnnotationValue p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1932
                        annotationTypeValues.addAll(vals);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1933
                        return null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1934
                    }
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1935
                    @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1936
                    protected Void defaultAction(Object o, AnnotationValue p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1937
                        annotationTypeValues.add(p);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1938
                        return null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1939
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1940
                }.visit(annotationValue, annotationValue);
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1941
                annotation.addContent(annotationTypeValues.size() == 1 ? "" : "{");
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1942
                String sep = "";
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1943
                for (AnnotationValue av : annotationTypeValues) {
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1944
                    annotation.addContent(sep);
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1945
                    annotation.addContent(annotationValueToContent(av));
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1946
                    sep = ",";
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1947
                }
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1948
                annotation.addContent(annotationTypeValues.size() == 1 ? "" : "}");
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1949
                isContainerDocumented = false;
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1950
            }
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  1951
            annotation.addContent(")");
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1952
        }
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1953
    }
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1954
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1955
    /**
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1956
     * Check if the annotation contains an array of annotation as a value. This
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1957
     * check is to verify if a repeatable type annotation is present or not.
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1958
     *
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1959
     * @param pairs annotation type element and value pairs
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1960
     *
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1961
     * @return true if the annotation contains an array of annotation as a value.
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1962
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1963
    private boolean isAnnotationArray(Map<? extends ExecutableElement, ? extends AnnotationValue> pairs) {
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1964
        AnnotationValue annotationValue;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1965
        for (ExecutableElement ee : pairs.keySet()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1966
            annotationValue = pairs.get(ee);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1967
            boolean rvalue = new SimpleAnnotationValueVisitor9<Boolean, Void>() {
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1968
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1969
                public Boolean visitArray(List<? extends AnnotationValue> vals, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1970
                    if (vals.size() > 1) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1971
                        if (vals.get(0) instanceof AnnotationMirror) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1972
                            isContainerDocumented = true;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1973
                            return new SimpleAnnotationValueVisitor9<Boolean, Void>() {
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1974
                                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1975
                                public Boolean visitAnnotation(AnnotationMirror a, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1976
                                    isContainerDocumented = true;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1977
                                    Element asElement = a.getAnnotationType().asElement();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1978
                                    if (utils.isDocumentedAnnotation((TypeElement)asElement)) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1979
                                        isAnnotationDocumented = true;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1980
                                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1981
                                    return true;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1982
                                }
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1983
                                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1984
                                protected Boolean defaultAction(Object o, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1985
                                    return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1986
                                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1987
                            }.visit(vals.get(0));
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1988
                        }
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1989
                    }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1990
                    return false;
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  1991
                }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1992
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  1993
                @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1994
                protected Boolean defaultAction(Object o, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1995
                    return false;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1996
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1997
            }.visit(annotationValue);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1998
            if (rvalue) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  1999
                return true;
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  2000
            }
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  2001
        }
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  2002
        return false;
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  2003
    }
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents: 14549
diff changeset
  2004
17570
78512b2899db 8012183: replace some uses of Configuration.getText with Configuration.getResource
jjg
parents: 17569
diff changeset
  2005
    private Content annotationValueToContent(AnnotationValue annotationValue) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2006
        return new SimpleAnnotationValueVisitor9<Content, Void>() {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2007
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  2008
            @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2009
            public Content visitType(TypeMirror t, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2010
                return new SimpleTypeVisitor9<Content, Void>() {
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  2011
                    @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2012
                    public Content visitDeclared(DeclaredType t, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2013
                        LinkInfoImpl linkInfo = new LinkInfoImpl(configuration,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2014
                                LinkInfoImpl.Kind.ANNOTATION, t);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2015
                        String name = utils.isIncluded(t.asElement())
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2016
                                ? t.asElement().getSimpleName().toString()
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2017
                                : utils.getFullyQualifiedName(t.asElement());
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2018
                        linkInfo.label = new StringContent(name + utils.getDimension(t) + ".class");
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2019
                        return getLink(linkInfo);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2020
                    }
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  2021
                    @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2022
                    protected Content defaultAction(TypeMirror e, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2023
                        return new StringContent(t + utils.getDimension(t) + ".class");
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2024
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2025
                }.visit(t);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2026
            }
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  2027
            @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2028
            public Content visitAnnotation(AnnotationMirror a, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2029
                List<Content> list = getAnnotations(0, a, false);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2030
                ContentBuilder buf = new ContentBuilder();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2031
                for (Content c : list) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2032
                    buf.addContent(c);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2033
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2034
                return buf;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2035
            }
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  2036
            @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2037
            public Content visitEnumConstant(VariableElement c, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2038
                return getDocLink(LinkInfoImpl.Kind.ANNOTATION,
36500
d31e4986dc8b 8149139: [javadoc] Modify Content to accept CharSequence
ksrini
parents: 36038
diff changeset
  2039
                        c, c.getSimpleName(), false);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2040
            }
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  2041
            @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2042
            public Content visitArray(List<? extends AnnotationValue> vals, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2043
                ContentBuilder buf = new ContentBuilder();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2044
                String sep = "";
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2045
                for (AnnotationValue av : vals) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2046
                    buf.addContent(sep);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2047
                    buf.addContent(visit(av));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2048
                    sep = " ";
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2049
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2050
                return buf;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2051
            }
40606
eb2c81860c86 8164836: TEST_BUG: adjust scope of the DefinedByAnalyzer in tools/all/RunCodingRules.java
jlahoda
parents: 40587
diff changeset
  2052
            @Override
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2053
            protected Content defaultAction(Object o, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2054
                return new StringContent(annotationValue.toString());
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2055
            }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
  2056
        }.visit(annotationValue);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2057
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2058
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47395
diff changeset
  2059
    protected TableHeader getPackageTableHeader() {
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47395
diff changeset
  2060
        return new TableHeader(contents.packageLabel, contents.descriptionLabel);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2061
    }
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47748
diff changeset
  2062
47847
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2063
    /**
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2064
     * Returns an HtmlTree for the SCRIPT tag.
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2065
     *
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2066
     * @return an HtmlTree for the SCRIPT tag
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2067
     */
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2068
    protected Script getWinTitleScript() {
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2069
        Script script = new Script();
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2070
        if (winTitle != null && winTitle.length() > 0) {
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2071
            script.append("<!--\n" +
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2072
                    "    try {\n" +
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2073
                    "        if (location.href.indexOf('is-external=true') == -1) {\n" +
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2074
                    "            parent.document.title=")
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2075
                    .appendStringLiteral(winTitle)
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2076
                    .append(";\n" +
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2077
                    "        }\n" +
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2078
                    "    }\n" +
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2079
                    "    catch(err) {\n" +
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2080
                    "    }\n" +
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2081
                    "//-->\n");
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2082
        }
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47748
diff changeset
  2083
        return script;
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47748
diff changeset
  2084
    }
47847
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2085
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2086
    /**
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2087
     * Returns an HtmlTree for the BODY tag.
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2088
     *
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2089
     * @param includeScript  set true if printing windowtitle script
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2090
     * @param title title for the window
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2091
     * @return an HtmlTree for the BODY tag
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2092
     */
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2093
    public HtmlTree getBody(boolean includeScript, String title) {
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2094
        HtmlTree body = new HtmlTree(HtmlTag.BODY);
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2095
        // Set window title string which is later printed
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2096
        this.winTitle = title;
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2097
        // Don't print windowtitle script for overview-frame, allclasses-frame
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2098
        // and package-frame
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2099
        if (includeScript) {
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2100
            this.mainBodyScript = getWinTitleScript();
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2101
            body.addContent(mainBodyScript.asContent());
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2102
            Content noScript = HtmlTree.NOSCRIPT(HtmlTree.DIV(contents.noScriptMessage));
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2103
            body.addContent(noScript);
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2104
        }
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2105
        return body;
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2106
    }
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2107
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2108
    Script getMainBodyScript() {
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2109
        return mainBodyScript;
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
  2110
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2111
}