langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/ParamTaglet.java
author jjg
Tue, 09 Oct 2012 19:31:58 -0700
changeset 14259 fb94a1df0d53
parent 14258 8d2148961366
child 14260 727a84636f12
permissions -rw-r--r--
8000208: fix langtools javadoc comment issues Reviewed-by: bpatel, mcimadamore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 5520
diff changeset
     2
 * Copyright (c) 2001, 2012, 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
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package com.sun.tools.doclets.internal.toolkit.taglets;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 5520
diff changeset
    28
import java.util.*;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 5520
diff changeset
    29
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import com.sun.javadoc.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import com.sun.tools.doclets.internal.toolkit.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
 * A taglet that represents the @param tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
 * This code is not part of an API.
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 * It is implementation that is subject to change.
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 * Do not use it as an API
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 * @author Jamie Ho
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 * @since 1.4
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
public class ParamTaglet extends BaseTaglet implements InheritableTaglet {
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
     * Construct a ParamTaglet.
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
    public ParamTaglet() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
        name = "param";
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
     * Given an array of <code>Parameter</code>s, return
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
     * a name/rank number map.  If the array is null, then
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
     * null is returned.
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
     * @param params The array of parmeters (from type or executable member) to
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
     *               check.
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
     * @return a name-rank number map.
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
    60
    private static Map<String,String> getRankMap(Object[] params){
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
        if (params == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
        }
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
    64
        HashMap<String,String> result = new HashMap<String,String>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        for (int i = 0; i < params.length; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
            String name = params[i] instanceof Parameter ?
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
                ((Parameter) params[i]).name() :
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
                ((TypeVariable) params[i]).typeName();
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
            result.put(name, String.valueOf(i));
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
        return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
    public void inherit(DocFinder.Input input, DocFinder.Output output) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
        if (input.tagId == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
            input.isTypeVariableParamTag = ((ParamTag) input.tag).isTypeParameter();
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
            Object[] parameters = input.isTypeVariableParamTag ?
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
                (Object[]) ((MethodDoc) input.tag.holder()).typeParameters() :
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
                (Object[]) ((MethodDoc) input.tag.holder()).parameters();
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
            String target = ((ParamTag) input.tag).parameterName();
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
            int i;
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
            for (i = 0; i < parameters.length; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
                String name = parameters[i] instanceof Parameter ?
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
                    ((Parameter) parameters[i]).name() :
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
                    ((TypeVariable) parameters[i]).typeName();
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
                if (name.equals(target)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
                    input.tagId = String.valueOf(i);
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
                    break;
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
            if (i == parameters.length) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
                //Someone used {@inheritDoc} on an invalid @param tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
                //We don't know where to inherit from.
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
                //XXX: in the future when Configuration is available here,
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
                //print a warning for this mistake.
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
        ParamTag[] tags = input.isTypeVariableParamTag ?
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
            input.method.typeParamTags() : input.method.paramTags();
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   104
        Map<String, String> rankMap = getRankMap(input.isTypeVariableParamTag ?
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
            (Object[]) input.method.typeParameters() :
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
            (Object[]) input.method.parameters());
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
        for (int i = 0; i < tags.length; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
            if (rankMap.containsKey(tags[i].parameterName()) &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
                    rankMap.get(tags[i].parameterName()).equals((input.tagId))) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
                output.holder = input.method;
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
                output.holderTag = tags[i];
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
                output.inlineTags = input.isFirstSentence ?
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
                    tags[i].firstSentenceTags() : tags[i].inlineTags();
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
    public boolean inField() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
    public boolean inMethod() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
    public boolean inOverview() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
    public boolean inPackage() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
    public boolean inType() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
    public boolean isInlineTag() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
     * Given an array of <code>ParamTag</code>s,return its string representation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
     * @param holder the member that holds the param tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
     * @param writer the TagletWriter that will write this tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
     * @return the TagletOutput representation of these <code>ParamTag</code>s.
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
    public TagletOutput getTagletOutput(Doc holder, TagletWriter writer) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
        if (holder instanceof ExecutableMemberDoc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
            ExecutableMemberDoc member = (ExecutableMemberDoc) holder;
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
            TagletOutput output = getTagletOutput(false, member, writer,
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
                member.typeParameters(), member.typeParamTags());
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
            output.appendOutput(getTagletOutput(true, member, writer,
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
                member.parameters(), member.paramTags()));
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
            return output;
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
            ClassDoc classDoc = (ClassDoc) holder;
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
            return getTagletOutput(false, classDoc, writer,
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
                classDoc.typeParameters(), classDoc.typeParamTags());
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
     * Given an array of <code>ParamTag</code>s,return its string representation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
     * Try to inherit the param tags that are missing.
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
     *
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 14258
diff changeset
   186
     * @param holder            the doc that holds the param tags.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
     * @param writer            the TagletWriter that will write this tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
     * @param formalParameters  The array of parmeters (from type or executable
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
     *                          member) to check.
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
     * @return the TagletOutput representation of these <code>ParamTag</code>s.
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
    private TagletOutput getTagletOutput(boolean isNonTypeParams, Doc holder,
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
            TagletWriter writer, Object[] formalParameters, ParamTag[] paramTags) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
        TagletOutput result = writer.getOutputInstance();
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   196
        Set<String> alreadyDocumented = new HashSet<String>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
        if (paramTags.length > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
            result.appendOutput(
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
                processParamTags(isNonTypeParams, paramTags,
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
                getRankMap(formalParameters), writer, alreadyDocumented)
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
            );
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
        if (alreadyDocumented.size() != formalParameters.length) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
            //Some parameters are missing corresponding @param tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
            //Try to inherit them.
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
            result.appendOutput(getInheritedTagletOutput (isNonTypeParams, holder,
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
                writer, formalParameters, alreadyDocumented));
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
        return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
     * Loop through each indivitual parameter.  It it does not have a
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
     * corresponding param tag, try to inherit it.
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
    private TagletOutput getInheritedTagletOutput(boolean isNonTypeParams, Doc holder,
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
            TagletWriter writer, Object[] formalParameters,
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   218
            Set<String> alreadyDocumented) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
        TagletOutput result = writer.getOutputInstance();
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
        if ((! alreadyDocumented.contains(null)) &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
                holder instanceof MethodDoc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
            for (int i = 0; i < formalParameters.length; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
                if (alreadyDocumented.contains(String.valueOf(i))) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
                    continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
                //This parameter does not have any @param documentation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
                //Try to inherit it.
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
                DocFinder.Output inheritedDoc =
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
                    DocFinder.search(new DocFinder.Input((MethodDoc) holder, this,
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
                        String.valueOf(i), ! isNonTypeParams));
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
                if (inheritedDoc.inlineTags != null &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
                        inheritedDoc.inlineTags.length > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
                    result.appendOutput(
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
                        processParamTag(isNonTypeParams, writer,
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
                            (ParamTag) inheritedDoc.holderTag,
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
                            isNonTypeParams ?
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
                                ((Parameter) formalParameters[i]).name():
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
                                ((TypeVariable) formalParameters[i]).typeName(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
                            alreadyDocumented.size() == 0));
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
                alreadyDocumented.add(String.valueOf(i));
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
        return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
     * Given an array of <code>Tag</code>s representing this custom
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
     * tag, return its string representation.  Print a warning for param
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
     * tags that do not map to parameters.  Print a warning for param
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
     * tags that are duplicated.
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
     * @param paramTags the array of <code>ParamTag</code>s to convert.
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
     * @param writer the TagletWriter that will write this tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
     * @param alreadyDocumented the set of exceptions that have already
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
     *        been documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
     * @param rankMap a {@link java.util.Map} which holds ordering
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
     *                    information about the parameters.
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 14258
diff changeset
   259
     * @param rankMap a {@link java.util.Map} which holds a mapping
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
     *                of a rank of a parameter to its name.  This is
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
     *                used to ensure that the right name is used
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
     *                when parameter documentation is inherited.
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
     * @return the TagletOutput representation of this <code>Tag</code>.
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
    private TagletOutput processParamTags(boolean isNonTypeParams,
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   266
            ParamTag[] paramTags, Map<String, String> rankMap, TagletWriter writer,
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   267
            Set<String> alreadyDocumented) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
        TagletOutput result = writer.getOutputInstance();
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
        if (paramTags.length > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
            for (int i = 0; i < paramTags.length; ++i) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
                ParamTag pt = paramTags[i];
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
                String paramName = isNonTypeParams ?
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
                    pt.parameterName() : "<" + pt.parameterName() + ">";
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
                if (! rankMap.containsKey(pt.parameterName())) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
                    writer.getMsgRetriever().warning(pt.position(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
                        isNonTypeParams ?
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
                            "doclet.Parameters_warn" :
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
                            "doclet.Type_Parameters_warn",
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
                        paramName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
                }
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   281
                String rank = rankMap.get(pt.parameterName());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
                if (rank != null && alreadyDocumented.contains(rank)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
                    writer.getMsgRetriever().warning(pt.position(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
                       isNonTypeParams ?
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
                           "doclet.Parameters_dup_warn" :
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
                           "doclet.Type_Parameters_dup_warn",
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
                       paramName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
                result.appendOutput(processParamTag(isNonTypeParams, writer, pt,
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
                     pt.parameterName(), alreadyDocumented.size() == 0));
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
                alreadyDocumented.add(rank);
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
        return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
     * Convert the individual ParamTag into TagletOutput.
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
     * @param isNonTypeParams true if this is just a regular param tag.  False
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
     *                        if this is a type param tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
     * @param writer          the taglet writer for output writing.
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
     * @param paramTag        the tag whose inline tags will be printed.
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
     * @param name            the name of the parameter.  We can't rely on
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
     *                        the name in the param tag because we might be
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
     *                        inheriting documentation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
     * @param isFirstParam    true if this is the first param tag being printed.
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
    private TagletOutput processParamTag(boolean isNonTypeParams,
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
            TagletWriter writer, ParamTag paramTag, String name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
            boolean isFirstParam) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
        TagletOutput result = writer.getOutputInstance();
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
        String header = writer.configuration().getText(
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
            isNonTypeParams ? "doclet.Parameters" : "doclet.TypeParameters");
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
        if (isFirstParam) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
            result.appendOutput(writer.getParamHeader(header));
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
        result.appendOutput(writer.paramTagOutput(paramTag,
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
            name));
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
        return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
}