langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/TagletManager.java
author ksrini
Sun, 10 Apr 2016 08:41:00 -0700
changeset 37009 476d8d615222
parent 36526 3b41f1c69604
child 37757 f38cc75b6fa0
permissions -rw-r--r--
8073100: [javadoc] Provide an ability to suppress document generation for specific elements. Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
     2
 * Copyright (c) 2001, 2016, 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: 1789
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: 1789
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: 1789
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1789
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1789
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.toolkit.taglets;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import java.io.*;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
    29
import java.lang.reflect.Method;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import java.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    32
import javax.lang.model.element.Element;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    33
import javax.lang.model.element.ExecutableElement;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    34
import javax.lang.model.element.PackageElement;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    35
import javax.lang.model.element.TypeElement;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    36
import javax.lang.model.element.VariableElement;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    37
import javax.lang.model.util.SimpleElementVisitor9;
14545
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14368
diff changeset
    38
import javax.tools.JavaFileManager;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    39
import javax.tools.StandardJavaFileManager;
14545
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14368
diff changeset
    40
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    41
import com.sun.source.doctree.DocTree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    42
import com.sun.tools.javac.util.DefinedBy;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    43
import com.sun.tools.javac.util.DefinedBy.Api;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    44
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    45
import jdk.javadoc.internal.doclets.toolkit.util.CommentHelper;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    46
import jdk.javadoc.internal.doclets.toolkit.util.MessageRetriever;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    47
import jdk.javadoc.internal.doclets.toolkit.util.Utils;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    48
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    49
import static javax.tools.DocumentationTool.Location.*;
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 static com.sun.source.doctree.DocTree.Kind.*;
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14049
diff changeset
    52
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
/**
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    54
 * Manages the {@code Taglet}s used by doclets.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
 *
14260
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    56
 *  <p><b>This is NOT part of any supported API.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    57
 *  If you write code that depends on this, you do so at your own risk.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    58
 *  This code and its internal interfaces are subject to change or
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    59
 *  deletion without notice.</b>
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
 * @author Jamie Ho
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
public class TagletManager {
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
    /**
14545
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14368
diff changeset
    67
     * The default separator for the simple tag option.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
     */
14545
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14368
diff changeset
    69
    public static final char SIMPLE_TAGLET_OPT_SEPARATOR = ':';
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
    /**
14545
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14368
diff changeset
    72
     * The alternate separator for simple tag options.  Use this
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14368
diff changeset
    73
     * when you want the default separator to be in the name of the
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
     * custom tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
     */
14545
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14368
diff changeset
    76
    public static final String ALT_SIMPLE_TAGLET_OPT_SEPARATOR = "-";
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
     * The map of custom tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    81
    private final LinkedHashMap<String,Taglet> customTags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
     * The array of custom tags that can appear in packages.
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    86
    private List<Taglet> packageTags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
     * The array of custom tags that can appear in classes or interfaces.
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    91
    private List<Taglet> typeTags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
     * The array of custom tags that can appear in fields.
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
    96
    private List<Taglet> fieldTags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
     * The array of custom tags that can appear in constructors.
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   101
    private List<Taglet> constructorTags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
     * The array of custom tags that can appear in methods.
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   106
    private List<Taglet> methodTags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
     * The array of custom tags that can appear in the overview.
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   111
    private List<Taglet> overviewTags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
     * The array of custom tags that can appear in comments.
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   116
    private List<Taglet> inlineTags;
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
     * The array of custom tags that can appear in the serialized form.
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   121
    private List<Taglet> serializedFormTags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
     * The message retriever that will be used to print error messages.
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   126
    private final MessageRetriever message;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
     * Keep track of standard tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   131
    private final Set<String> standardTags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
     * Keep track of standard tags in lowercase to compare for better
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
     * error messages when a tag like @docRoot is mistakenly spelled
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
     * lowercase @docroot.
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   138
    private final Set<String> standardTagsLowercase;
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
     * Keep track of overriden standard tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   143
    private final Set<String> overridenStandardTags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
     * Keep track of the tags that may conflict
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
     * with standard tags in the future (any custom tag without
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
     * a period in its name).
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   150
    private final Set<String> potentiallyConflictingTags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
     * The set of unseen custom tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   155
    private final Set<String> unseenCustomTags;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
     * True if we do not want to use @since tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   160
    private final boolean nosince;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
     * True if we want to use @version tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   165
    private final boolean showversion;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
     * True if we want to use @author tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   170
    private final boolean showauthor;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
    /**
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 14545
diff changeset
   173
     * True if we want to use JavaFX-related tags (@propertyGetter,
17572
1081a023532f 8012295: Cleanup JavaFX features in standard doclet
jjg
parents: 17565
diff changeset
   174
     * @propertySetter, @propertyDescription, @defaultValue, @treatAsPrivate).
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 14545
diff changeset
   175
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   176
    private final boolean javafx;
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 14545
diff changeset
   177
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 14545
diff changeset
   178
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
     * Construct a new <code>TagletManager</code>.
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
     * @param nosince true if we do not want to use @since tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
     * @param showversion true if we want to use @version tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
     * @param showauthor true if we want to use @author tags.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   183
     * @param javafx indicates whether javafx is active.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
     * @param message the message retriever to print warnings.
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
    public TagletManager(boolean nosince, boolean showversion,
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 14545
diff changeset
   187
                         boolean showauthor, boolean javafx,
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 14545
diff changeset
   188
                         MessageRetriever message) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   189
        overridenStandardTags = new HashSet<>();
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   190
        potentiallyConflictingTags = new HashSet<>();
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   191
        standardTags = new HashSet<>();
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   192
        standardTagsLowercase = new HashSet<>();
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   193
        unseenCustomTags = new HashSet<>();
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   194
        customTags = new LinkedHashMap<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
        this.nosince = nosince;
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
        this.showversion = showversion;
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
        this.showauthor = showauthor;
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 14545
diff changeset
   198
        this.javafx = javafx;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
        this.message = message;
17573
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   200
        initStandardTaglets();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
        initStandardTagsLowercase();
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
     * Add a new <code>CustomTag</code>.  This is used to add a Taglet from within
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
     * a Doclet.  No message is printed to indicate that the Taglet is properly
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
     * registered because these Taglets are typically added for every execution of the
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
     * Doclet.  We don't want to see this type of error message every time.
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
     * @param customTag the new <code>CustomTag</code> to add.
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
    public void addCustomTag(Taglet customTag) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
        if (customTag != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
            String name = customTag.getName();
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
            if (customTags.containsKey(name)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
                customTags.remove(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
            customTags.put(name, customTag);
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
            checkTagName(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
21500
475e59d3b40c 8006248: Since addition of -Xdoclint, javadoc ignores unknown tags
bpatel
parents: 18659
diff changeset
   222
    public Set<String> getCustomTagNames() {
475e59d3b40c 8006248: Since addition of -Xdoclint, javadoc ignores unknown tags
bpatel
parents: 18659
diff changeset
   223
        return customTags.keySet();
475e59d3b40c 8006248: Since addition of -Xdoclint, javadoc ignores unknown tags
bpatel
parents: 18659
diff changeset
   224
    }
475e59d3b40c 8006248: Since addition of -Xdoclint, javadoc ignores unknown tags
bpatel
parents: 18659
diff changeset
   225
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
     * Add a new <code>Taglet</code>.  Print a message to indicate whether or not
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
     * the Taglet was registered properly.
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
     * @param classname  the name of the class representing the custom tag.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   230
     * @param fileManager the filemanager to load classes and resources.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
     * @param tagletPath  the path to the class representing the custom tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
     */
14545
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14368
diff changeset
   233
    public void addCustomTag(String classname, JavaFileManager fileManager, String tagletPath) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
        try {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   235
            ClassLoader tagClassLoader = null;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   236
            if (!fileManager.hasLocation(TAGLET_PATH)) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   237
                List<File> paths = new ArrayList<>();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   238
                if (tagletPath != null) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   239
                    for (String pathname : tagletPath.split(File.pathSeparator)) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   240
                        paths.add(new File(pathname));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   241
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   242
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   243
                if (fileManager instanceof StandardJavaFileManager) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   244
                    ((StandardJavaFileManager) fileManager).setLocation(TAGLET_PATH, paths);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
            }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   247
            tagClassLoader = fileManager.getClassLoader(TAGLET_PATH);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   248
            Class<?> customTagClass = tagClassLoader.loadClass(classname);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   249
            ensureReadable(customTagClass);
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   250
            Object instance = customTagClass.newInstance();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   251
            Taglet newLegacy = new UserTaglet((jdk.javadoc.doclet.taglet.Taglet)instance);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   252
            String tname = newLegacy.getName();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   253
            Taglet t = customTags.get(tname);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   254
            if (t != null) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   255
                customTags.remove(tname);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   256
            }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   257
            customTags.put(tname, newLegacy);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   258
            message.notice("doclet.Notice_taglet_registered", classname);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
        } catch (Exception exc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
            message.error("doclet.Error_taglet_not_registered", exc.getClass().getName(), classname);
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
    /**
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   265
     * Ensures that the module of the given class is readable to this
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   266
     * module.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   267
     * @param targetClass class in module to be made readable
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   268
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   269
    private void ensureReadable(Class<?> targetClass) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   270
        try {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   271
            Method getModuleMethod = Class.class.getMethod("getModule");
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   272
            Object thisModule = getModuleMethod.invoke(this.getClass());
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   273
            Object targetModule = getModuleMethod.invoke(targetClass);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   274
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   275
            Class<?> moduleClass = getModuleMethod.getReturnType();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   276
            Method addReadsMethod = moduleClass.getMethod("addReads", moduleClass);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   277
            addReadsMethod.invoke(thisModule, targetModule);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   278
        } catch (NoSuchMethodException e) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   279
            // ignore
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   280
        } catch (Exception e) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   281
            throw new InternalError(e.toString());
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   282
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   283
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   284
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   285
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
     * Add a new <code>SimpleTaglet</code>.  If this tag already exists
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
     * and the header passed as an argument is null, move tag to the back of the
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
     * list. If this tag already exists and the header passed as an argument is
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
     * not null, overwrite previous tag with new one.  Otherwise, add new
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
     * SimpleTaglet to list.
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
     * @param tagName the name of this tag
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
     * @param header the header to output.
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
     * @param locations the possible locations that this tag
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
     * can appear in.
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
    public void addNewSimpleCustomTag(String tagName, String header, String locations) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
        if (tagName == null || locations == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
        }
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   300
        Taglet tag = customTags.get(tagName);
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   301
        locations = Utils.toLowerCase(locations);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
        if (tag == null || header != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
            customTags.remove(tagName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
            customTags.put(tagName, new SimpleTaglet(tagName, header, locations));
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
            if (locations != null && locations.indexOf('x') == -1) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
                checkTagName(tagName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
            //Move to back
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
            customTags.remove(tagName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
            customTags.put(tagName, tag);
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
     * Given a tag name, add it to the set of tags it belongs to.
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
    private void checkTagName(String name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
        if (standardTags.contains(name)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
            overridenStandardTags.add(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
            if (name.indexOf('.') == -1) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
                potentiallyConflictingTags.add(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
            unseenCustomTags.add(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
     * Check the taglet to see if it is a legacy taglet.  Also
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
     * check its name for errors.
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
    private void checkTaglet(Object taglet) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
        if (taglet instanceof Taglet) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
            checkTagName(((Taglet) taglet).getName());
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   336
        } else if (taglet instanceof jdk.javadoc.doclet.taglet.Taglet) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   337
            jdk.javadoc.doclet.taglet.Taglet legacyTaglet = (jdk.javadoc.doclet.taglet.Taglet) taglet;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
            customTags.remove(legacyTaglet.getName());
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   339
            customTags.put(legacyTaglet.getName(), new UserTaglet(legacyTaglet));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
            checkTagName(legacyTaglet.getName());
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
            throw new IllegalArgumentException("Given object is not a taglet.");
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
     * Given a name of a seen custom tag, remove it from the set of unseen
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
     * custom tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
     * @param name the name of the seen custom tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
    public void seenCustomTag(String name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
        unseenCustomTags.remove(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
     * Given an array of <code>Tag</code>s, check for spelling mistakes.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   357
     * @param utils the utility class to use
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   358
     * @param element the tags holder
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   359
     * @param trees the trees containing the comments
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
     * @param areInlineTags true if the array of tags are inline and false otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   362
    public void checkTags(final Utils utils, Element element,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   363
                          Iterable<? extends DocTree> trees, boolean areInlineTags) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   364
        if (trees == null) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
        }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   367
        CommentHelper ch = utils.getCommentHelper(element);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   368
        for (DocTree tag : trees) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   369
            String name = tag.getKind().tagName;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   370
            if (name == null) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   371
                continue;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   372
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
            if (name.length() > 0 && name.charAt(0) == '@') {
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
                name = name.substring(1, name.length());
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
            if (! (standardTags.contains(name) || customTags.containsKey(name))) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   377
                if (standardTagsLowercase.contains(Utils.toLowerCase(name))) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   378
                    message.warning(ch.getDocTreePath(tag), "doclet.UnknownTagLowercase", ch.getTagName(tag));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
                    continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
                } else {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   381
                    message.warning(ch.getDocTreePath(tag), "doclet.UnknownTag", ch.getTagName(tag));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
                    continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
            }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   385
            final Taglet taglet = customTags.get(name);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   386
            // Check and verify tag usage
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   387
            if (taglet != null) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   388
                if (areInlineTags && !taglet.isInlineTag()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   389
                    printTagMisuseWarn(ch, taglet, tag, "inline");
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   390
                }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   391
                // nothing more to do
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   392
                if (element == null) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   393
                    return;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
                }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   395
                new SimpleElementVisitor9<Void, Void>() {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   396
                    @Override @DefinedBy(Api.LANGUAGE_MODEL)
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   397
                    public Void visitPackage(PackageElement e, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   398
                        if (!taglet.inPackage()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   399
                            printTagMisuseWarn(utils.getCommentHelper(e), taglet, tag, "package");
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   400
                        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   401
                        return null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   402
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   403
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   404
                    @Override @DefinedBy(Api.LANGUAGE_MODEL)
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   405
                    public Void visitType(TypeElement e, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   406
                        if (!taglet.inType()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   407
                            printTagMisuseWarn(utils.getCommentHelper(e), taglet, tag, "class");
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   408
                        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   409
                        return null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   410
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   411
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   412
                    @Override @DefinedBy(Api.LANGUAGE_MODEL)
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   413
                    public Void visitExecutable(ExecutableElement e, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   414
                        if (utils.isConstructor(e) && !taglet.inConstructor()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   415
                            printTagMisuseWarn(utils.getCommentHelper(e), taglet, tag, "constructor");
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   416
                        } else if (!taglet.inMethod()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   417
                            printTagMisuseWarn(utils.getCommentHelper(e), taglet, tag, "method");
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   418
                        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   419
                        return null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   420
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   421
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   422
                    @Override @DefinedBy(Api.LANGUAGE_MODEL)
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   423
                    public Void visitVariable(VariableElement e, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   424
                        if (utils.isField(e) && !taglet.inField()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   425
                            printTagMisuseWarn(utils.getCommentHelper(e), taglet, tag, "field");
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   426
                        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   427
                        return null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   428
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   429
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   430
                    @Override @DefinedBy(Api.LANGUAGE_MODEL)
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   431
                    public Void visitUnknown(Element e, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   432
                        if (utils.isOverviewElement(e) && !taglet.inOverview()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   433
                            printTagMisuseWarn(utils.getCommentHelper(e), taglet, tag, "overview");
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   434
                        }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   435
                        return null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   436
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   437
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   438
                    @Override @DefinedBy(Api.LANGUAGE_MODEL)
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   439
                    protected Void defaultAction(Element e, Void p) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   440
                        return null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   441
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   442
                }.visit(element);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
     * Given the taglet, the tag and the type of documentation that the tag
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
     * was found in, print a tag misuse warning.
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
     * @param taglet the taglet representing the misused tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
     * @param tag the misused tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
     * @param holderType the type of documentation that the misused tag was found in.
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   454
    private void printTagMisuseWarn(CommentHelper ch, Taglet taglet, DocTree tag, String holderType) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   455
        Set<String> locationsSet = new LinkedHashSet<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
        if (taglet.inOverview()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
            locationsSet.add("overview");
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
        if (taglet.inPackage()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
            locationsSet.add("package");
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
        if (taglet.inType()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
            locationsSet.add("class/interface");
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
        if (taglet.inConstructor())  {
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
            locationsSet.add("constructor");
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
        if (taglet.inField()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
            locationsSet.add("field");
06bc494ca11e Initial load
duke
parents:
diff changeset
   470
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   471
        if (taglet.inMethod()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
            locationsSet.add("method");
06bc494ca11e Initial load
duke
parents:
diff changeset
   473
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
        if (taglet.isInlineTag()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
            locationsSet.add("inline text");
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
        }
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   477
        String[] locations = locationsSet.toArray(new String[]{});
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
        if (locations == null || locations.length == 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
            //This known tag is excluded.
06bc494ca11e Initial load
duke
parents:
diff changeset
   480
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
        }
14263
473b1eaede64 8000310: Clean up use of StringBuffer in langtools
jjg
parents: 14260
diff changeset
   482
        StringBuilder combined_locations = new StringBuilder();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
        for (int i = 0; i < locations.length; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
            if (i > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
                combined_locations.append(", ");
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
            combined_locations.append(locations[i]);
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
        }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   489
        message.warning(ch.getDocTreePath(tag), "doclet.tag_misuse",
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
            "@" + taglet.getName(), holderType, combined_locations.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   491
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
     * Return the array of <code>Taglet</code>s that can
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
     * appear in packages.
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
     * @return the array of <code>Taglet</code>s that can
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
     * appear in packages.
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   499
    public List<Taglet> getPackageCustomTaglets() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
        if (packageTags == null) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   501
            initCustomTaglets();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   502
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
        return packageTags;
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   505
06bc494ca11e Initial load
duke
parents:
diff changeset
   506
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   507
     * Return the array of <code>Taglet</code>s that can
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
     * appear in classes or interfaces.
06bc494ca11e Initial load
duke
parents:
diff changeset
   509
     * @return the array of <code>Taglet</code>s that can
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
     * appear in classes or interfaces.
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   512
    public List<Taglet> getTypeCustomTaglets() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
        if (typeTags == null) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   514
            initCustomTaglets();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   515
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
        return typeTags;
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
06bc494ca11e Initial load
duke
parents:
diff changeset
   519
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
     * Return the array of inline <code>Taglet</code>s that can
06bc494ca11e Initial load
duke
parents:
diff changeset
   521
     * appear in comments.
06bc494ca11e Initial load
duke
parents:
diff changeset
   522
     * @return the array of <code>Taglet</code>s that can
06bc494ca11e Initial load
duke
parents:
diff changeset
   523
     * appear in comments.
06bc494ca11e Initial load
duke
parents:
diff changeset
   524
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   525
    public List<Taglet> getInlineCustomTaglets() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   526
        if (inlineTags == null) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   527
            initCustomTaglets();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   528
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   529
        return inlineTags;
06bc494ca11e Initial load
duke
parents:
diff changeset
   530
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   531
06bc494ca11e Initial load
duke
parents:
diff changeset
   532
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   533
     * Return the array of <code>Taglet</code>s that can
06bc494ca11e Initial load
duke
parents:
diff changeset
   534
     * appear in fields.
06bc494ca11e Initial load
duke
parents:
diff changeset
   535
     * @return the array of <code>Taglet</code>s that can
06bc494ca11e Initial load
duke
parents:
diff changeset
   536
     * appear in field.
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   538
    public List<Taglet> getFieldCustomTaglets() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   539
        if (fieldTags == null) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   540
            initCustomTaglets();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   541
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   542
        return fieldTags;
06bc494ca11e Initial load
duke
parents:
diff changeset
   543
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   544
06bc494ca11e Initial load
duke
parents:
diff changeset
   545
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   546
     * Return the array of <code>Taglet</code>s that can
06bc494ca11e Initial load
duke
parents:
diff changeset
   547
     * appear in the serialized form.
06bc494ca11e Initial load
duke
parents:
diff changeset
   548
     * @return the array of <code>Taglet</code>s that can
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
     * appear in the serialized form.
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   551
    public List<Taglet> getSerializedFormTaglets() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   552
        if (serializedFormTags == null) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   553
            initCustomTaglets();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   554
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   555
        return serializedFormTags;
06bc494ca11e Initial load
duke
parents:
diff changeset
   556
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   557
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
    /**
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   559
     * Returns the custom tags for a given element.
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   560
     *
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   561
     * @param e the element to get custom tags for
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   562
     * @return the array of <code>Taglet</code>s that can
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   563
     * appear in the given element.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   565
    public List<Taglet> getCustomTaglets(Element e) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   566
        switch (e.getKind()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   567
            case CONSTRUCTOR:
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   568
                return getConstructorCustomTaglets();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   569
            case METHOD:
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   570
                return getMethodCustomTaglets();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   571
            case ENUM_CONSTANT:
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   572
            case FIELD:
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   573
                return getFieldCustomTaglets();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   574
            case ANNOTATION_TYPE:
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   575
            case INTERFACE:
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   576
            case CLASS:
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   577
            case ENUM:
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   578
                return getTypeCustomTaglets();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   579
            case PACKAGE:
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   580
                return getPackageCustomTaglets();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   581
            case OTHER:
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   582
                return getOverviewCustomTaglets();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   583
            default:
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   584
                throw new AssertionError("unknown element: " + e + " ,kind: " + e.getKind());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   585
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   586
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   587
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
    /**
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   589
     * Return a List of <code>Taglet</code>s that can
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   590
     * appear in constructors.
06bc494ca11e Initial load
duke
parents:
diff changeset
   591
     * @return the array of <code>Taglet</code>s that can
06bc494ca11e Initial load
duke
parents:
diff changeset
   592
     * appear in constructors.
06bc494ca11e Initial load
duke
parents:
diff changeset
   593
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   594
    public List<Taglet> getConstructorCustomTaglets() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   595
        if (constructorTags == null) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   596
            initCustomTaglets();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   597
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   598
        return constructorTags;
06bc494ca11e Initial load
duke
parents:
diff changeset
   599
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   600
06bc494ca11e Initial load
duke
parents:
diff changeset
   601
    /**
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   602
     * Return a List of <code>Taglet</code>s that can
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   603
     * appear in methods.
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
     * @return the array of <code>Taglet</code>s that can
06bc494ca11e Initial load
duke
parents:
diff changeset
   605
     * appear in methods.
06bc494ca11e Initial load
duke
parents:
diff changeset
   606
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   607
    public List<Taglet> getMethodCustomTaglets() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   608
        if (methodTags == null) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   609
            initCustomTaglets();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   610
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
        return methodTags;
06bc494ca11e Initial load
duke
parents:
diff changeset
   612
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
06bc494ca11e Initial load
duke
parents:
diff changeset
   614
    /**
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   615
     * Return a List of <code>Taglet</code>s that can
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   616
     * appear in an overview.
06bc494ca11e Initial load
duke
parents:
diff changeset
   617
     * @return the array of <code>Taglet</code>s that can
06bc494ca11e Initial load
duke
parents:
diff changeset
   618
     * appear in overview.
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   620
    public List<Taglet> getOverviewCustomTaglets() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   621
        if (overviewTags == null) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   622
            initCustomTaglets();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   623
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   624
        return overviewTags;
06bc494ca11e Initial load
duke
parents:
diff changeset
   625
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   626
06bc494ca11e Initial load
duke
parents:
diff changeset
   627
    /**
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   628
     * Initialize the custom tag Lists.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   629
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   630
    private void initCustomTaglets() {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   631
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   632
        packageTags = new ArrayList<>();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   633
        typeTags = new ArrayList<>();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   634
        fieldTags = new ArrayList<>();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   635
        constructorTags = new ArrayList<>();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   636
        methodTags = new ArrayList<>();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   637
        inlineTags = new ArrayList<>();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   638
        overviewTags = new ArrayList<>();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   639
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   640
        for (Taglet current : customTags.values()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   641
            if (current.inPackage() && !current.isInlineTag()) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   642
                packageTags.add(current);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   643
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   644
            if (current.inType() && !current.isInlineTag()) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   645
                typeTags.add(current);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   646
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   647
            if (current.inField() && !current.isInlineTag()) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   648
                fieldTags.add(current);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   649
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   650
            if (current.inConstructor() && !current.isInlineTag()) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   651
                constructorTags.add(current);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   652
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   653
            if (current.inMethod() && !current.isInlineTag()) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   654
                methodTags.add(current);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   655
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   656
            if (current.isInlineTag()) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   657
                inlineTags.add(current);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   659
            if (current.inOverview() && !current.isInlineTag()) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   660
                overviewTags.add(current);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   661
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   663
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
        //Init the serialized form tags
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   665
        serializedFormTags = new ArrayList<>();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   666
        serializedFormTags.add(customTags.get(SERIAL_DATA.tagName));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   667
        serializedFormTags.add(customTags.get(THROWS.tagName));
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 5520
diff changeset
   668
        if (!nosince)
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   669
            serializedFormTags.add(customTags.get(SINCE.tagName));
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   670
        serializedFormTags.add(customTags.get(SEE.tagName));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   672
06bc494ca11e Initial load
duke
parents:
diff changeset
   673
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   674
     * Initialize standard Javadoc tags for ordering purposes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   675
     */
17573
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   676
    private void initStandardTaglets() {
18659
5fe5650da7f9 8015720: since tag isn't copied while generating JavaFX documentation
janvalenta
parents: 17573
diff changeset
   677
        if (javafx) {
5fe5650da7f9 8015720: since tag isn't copied while generating JavaFX documentation
janvalenta
parents: 17573
diff changeset
   678
            initJavaFXTaglets();
5fe5650da7f9 8015720: since tag isn't copied while generating JavaFX documentation
janvalenta
parents: 17573
diff changeset
   679
        }
5fe5650da7f9 8015720: since tag isn't copied while generating JavaFX documentation
janvalenta
parents: 17573
diff changeset
   680
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   681
        Taglet temp;
17573
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   682
        addStandardTaglet(new ParamTaglet());
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   683
        addStandardTaglet(new ReturnTaglet());
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   684
        addStandardTaglet(new ThrowsTaglet());
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   685
        addStandardTaglet(new SimpleTaglet(EXCEPTION.tagName, null,
17573
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   686
                SimpleTaglet.METHOD + SimpleTaglet.CONSTRUCTOR));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   687
        addStandardTaglet(!nosince, new SimpleTaglet(SINCE.tagName, message.getText("doclet.Since"),
37009
476d8d615222 8073100: [javadoc] Provide an ability to suppress document generation for specific elements.
ksrini
parents: 36526
diff changeset
   688
                SimpleTaglet.ALL));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   689
        addStandardTaglet(showversion, new SimpleTaglet(VERSION.tagName, message.getText("doclet.Version"),
17573
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   690
                SimpleTaglet.PACKAGE + SimpleTaglet.TYPE + SimpleTaglet.OVERVIEW));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   691
        addStandardTaglet(showauthor, new SimpleTaglet(AUTHOR.tagName, message.getText("doclet.Author"),
17573
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   692
                SimpleTaglet.PACKAGE + SimpleTaglet.TYPE + SimpleTaglet.OVERVIEW));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   693
        addStandardTaglet(new SimpleTaglet(SERIAL_DATA.tagName, message.getText("doclet.SerialData"),
37009
476d8d615222 8073100: [javadoc] Provide an ability to suppress document generation for specific elements.
ksrini
parents: 36526
diff changeset
   694
                SimpleTaglet.EXCLUDED));
476d8d615222 8073100: [javadoc] Provide an ability to suppress document generation for specific elements.
ksrini
parents: 36526
diff changeset
   695
        addStandardTaglet(new SimpleTaglet(HIDDEN.tagName, message.getText("doclet.Hidden"),
476d8d615222 8073100: [javadoc] Provide an ability to suppress document generation for specific elements.
ksrini
parents: 36526
diff changeset
   696
                SimpleTaglet.FIELD + SimpleTaglet.METHOD + SimpleTaglet.TYPE));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   697
        customTags.put((temp = new SimpleTaglet("factory", message.getText("doclet.Factory"),
37009
476d8d615222 8073100: [javadoc] Provide an ability to suppress document generation for specific elements.
ksrini
parents: 36526
diff changeset
   698
                SimpleTaglet.METHOD)).getName(), temp);
17573
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   699
        addStandardTaglet(new SeeTaglet());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   700
        //Standard inline tags
17573
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   701
        addStandardTaglet(new DocRootTaglet());
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   702
        addStandardTaglet(new InheritDocTaglet());
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   703
        addStandardTaglet(new ValueTaglet());
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   704
        addStandardTaglet(new LiteralTaglet());
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   705
        addStandardTaglet(new CodeTaglet());
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 25874
diff changeset
   706
        addStandardTaglet(new IndexTaglet());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   707
17573
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   708
        // Keep track of the names of standard tags for error
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   709
        // checking purposes. The following are not handled above.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   710
        standardTags.add(DEPRECATED.tagName);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   711
        standardTags.add(LINK.tagName);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   712
        standardTags.add(LINK_PLAIN.tagName);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   713
        standardTags.add(SERIAL.tagName);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   714
        standardTags.add(SERIAL_FIELD.tagName);
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 14545
diff changeset
   715
    }
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 14545
diff changeset
   716
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 14545
diff changeset
   717
    /**
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 14545
diff changeset
   718
     * Initialize JavaFX-related tags.
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 14545
diff changeset
   719
     */
17573
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   720
    private void initJavaFXTaglets() {
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   721
        addStandardTaglet(new PropertyGetterTaglet());
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   722
        addStandardTaglet(new PropertySetterTaglet());
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   723
        addStandardTaglet(new SimpleTaglet("propertyDescription",
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   724
                message.getText("doclet.PropertyDescription"),
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   725
                SimpleTaglet.FIELD + SimpleTaglet.METHOD));
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   726
        addStandardTaglet(new SimpleTaglet("defaultValue", message.getText("doclet.DefaultValue"),
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   727
            SimpleTaglet.FIELD + SimpleTaglet.METHOD));
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   728
        addStandardTaglet(new SimpleTaglet("treatAsPrivate", null,
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   729
                SimpleTaglet.FIELD + SimpleTaglet.METHOD + SimpleTaglet.TYPE));
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   730
    }
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 14545
diff changeset
   731
17573
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   732
    void addStandardTaglet(Taglet taglet) {
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   733
        String name = taglet.getName();
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   734
        customTags.put(name, taglet);
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   735
        standardTags.add(name);
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   736
    }
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   737
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   738
    void addStandardTaglet(boolean enable, Taglet taglet) {
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   739
        String name = taglet.getName();
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   740
        if (enable)
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   741
            customTags.put(name, taglet);
0e20dec17c87 8012311: Cleanup names and duplicatre code in TagletManager
jjg
parents: 17572
diff changeset
   742
        standardTags.add(name);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   743
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   744
06bc494ca11e Initial load
duke
parents:
diff changeset
   745
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   746
     * Initialize lowercase version of standard Javadoc tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
   747
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   748
    private void initStandardTagsLowercase() {
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   749
        for (String standardTag : standardTags) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 33920
diff changeset
   750
            standardTagsLowercase.add(Utils.toLowerCase(standardTag));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   751
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   752
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   753
06bc494ca11e Initial load
duke
parents:
diff changeset
   754
    public boolean isKnownCustomTag(String tagName) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   755
        return customTags.containsKey(tagName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   756
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   757
06bc494ca11e Initial load
duke
parents:
diff changeset
   758
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   759
     * Print a list of {@link Taglet}s that might conflict with
06bc494ca11e Initial load
duke
parents:
diff changeset
   760
     * standard tags in the future and a list of standard tags
06bc494ca11e Initial load
duke
parents:
diff changeset
   761
     * that have been overriden.
06bc494ca11e Initial load
duke
parents:
diff changeset
   762
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   763
    public void printReport() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   764
        printReportHelper("doclet.Notice_taglet_conflict_warn", potentiallyConflictingTags);
06bc494ca11e Initial load
duke
parents:
diff changeset
   765
        printReportHelper("doclet.Notice_taglet_overriden", overridenStandardTags);
06bc494ca11e Initial load
duke
parents:
diff changeset
   766
        printReportHelper("doclet.Notice_taglet_unseen", unseenCustomTags);
06bc494ca11e Initial load
duke
parents:
diff changeset
   767
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   768
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   769
    private void printReportHelper(String noticeKey, Set<String> names) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   770
        if (names.size() > 0) {
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   771
            String[] namesArray = names.toArray(new String[] {});
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   772
            String result = " ";
06bc494ca11e Initial load
duke
parents:
diff changeset
   773
            for (int i = 0; i < namesArray.length; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   774
                result += "@" + namesArray[i];
06bc494ca11e Initial load
duke
parents:
diff changeset
   775
                if (i + 1 < namesArray.length) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   776
                    result += ", ";
06bc494ca11e Initial load
duke
parents:
diff changeset
   777
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   778
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   779
            message.notice(noticeKey, result);
06bc494ca11e Initial load
duke
parents:
diff changeset
   780
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   781
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   782
06bc494ca11e Initial load
duke
parents:
diff changeset
   783
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   784
     * Given the name of a tag, return the corresponding taglet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   785
     * Return null if the tag is unknown.
06bc494ca11e Initial load
duke
parents:
diff changeset
   786
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   787
     * @param name the name of the taglet to retrieve.
06bc494ca11e Initial load
duke
parents:
diff changeset
   788
     * @return return the corresponding taglet. Return null if the tag is
06bc494ca11e Initial load
duke
parents:
diff changeset
   789
     *         unknown.
06bc494ca11e Initial load
duke
parents:
diff changeset
   790
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   791
    public Taglet getTaglet(String name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   792
        if (name.indexOf("@") == 0) {
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   793
            return customTags.get(name.substring(1));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   794
        } else {
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   795
            return customTags.get(name);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   796
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   797
06bc494ca11e Initial load
duke
parents:
diff changeset
   798
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   799
}