langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/TypeMaker.java
author jjg
Mon, 09 May 2016 16:52:15 -0700
changeset 37938 42baa89d2156
parent 32800 langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/TypeMaker.java@8457813125e3
child 38617 d93a7f64e231
permissions -rw-r--r--
8075703: jdk.javadoc module exports com.sun.tools.javadoc package which contains a lot of internal API. Reviewed-by: ksrini
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
     2
 * Copyright (c) 1997, 2013, 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: 2212
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: 2212
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: 2212
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2212
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2212
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
37938
42baa89d2156 8075703: jdk.javadoc module exports com.sun.tools.javadoc package which contains a lot of internal API.
jjg
parents: 32800
diff changeset
    26
package com.sun.tools.javadoc.main;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import com.sun.javadoc.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import com.sun.tools.javac.code.Symbol;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import com.sun.tools.javac.code.Symbol.ClassSymbol;
32800
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    31
import com.sun.tools.javac.code.Symbol.CompletionFailure;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import com.sun.tools.javac.code.Type;
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 8631
diff changeset
    33
import com.sun.tools.javac.code.Type.ArrayType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import com.sun.tools.javac.code.Type.ClassType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import com.sun.tools.javac.code.Type.TypeVar;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import com.sun.tools.javac.util.List;
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14260
diff changeset
    37
import static com.sun.tools.javac.code.TypeTag.ARRAY;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
14260
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    39
/**
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    40
 *  <p><b>This is NOT part of any supported API.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    41
 *  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
    42
 *  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
    43
 *  deletion without notice.</b>
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    44
 */
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
public class TypeMaker {
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
    public static com.sun.javadoc.Type getType(DocEnv env, Type t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
        return getType(env, t, true);
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
     * @param errToClassDoc  if true, ERROR type results in a ClassDoc;
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
     *          false preserves legacy behavior
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
     */
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
    55
    public static com.sun.javadoc.Type getType(DocEnv env, Type t,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
    56
            boolean errorToClassDoc) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
    57
        return getType(env, t, errorToClassDoc, true);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
    58
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
    59
32800
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    60
    public static com.sun.javadoc.Type getType(DocEnv env, Type t,
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    61
            boolean errToClassDoc, boolean considerAnnotations) {
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    62
        try {
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    63
            return getTypeImpl(env, t, errToClassDoc, considerAnnotations);
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    64
        } catch (CompletionFailure cf) {
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    65
            /* Quietly ignore completion failures and try again - the type
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    66
             * for which the CompletionFailure was thrown shouldn't be completed
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    67
             * again by the completer that threw the CompletionFailure.
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    68
             */
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    69
            return getType(env, t, errToClassDoc, considerAnnotations);
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    70
        }
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    71
    }
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    72
1870
57a1138dffc8 6795903: fix latent build warnings in langtools repository
jjg
parents: 10
diff changeset
    73
    @SuppressWarnings("fallthrough")
32800
8457813125e3 8135307: CompletionFailure thrown when calling FieldDoc.type, if the field's type is missing
jlahoda
parents: 25874
diff changeset
    74
    private static com.sun.javadoc.Type getTypeImpl(DocEnv env, Type t,
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
    75
            boolean errToClassDoc, boolean considerAnnotations) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
        if (env.legacyDoclet) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
            t = env.types.erasure(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
        }
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
    79
19906
2698aaacb4b2 8023833: Replace direct use of AnnotatedType in javadoc code
jjg
parents: 17578
diff changeset
    80
        if (considerAnnotations && t.isAnnotated()) {
2698aaacb4b2 8023833: Replace direct use of AnnotatedType in javadoc code
jjg
parents: 17578
diff changeset
    81
            return new AnnotatedTypeImpl(env, t);
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
    82
        }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
    83
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14260
diff changeset
    84
        switch (t.getTag()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
        case CLASS:
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
            if (ClassDocImpl.isGeneric((ClassSymbol)t.tsym)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
                return env.getParameterizedType((ClassType)t);
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
                return env.getClassDoc((ClassSymbol)t.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
        case WILDCARD:
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
            Type.WildcardType a = (Type.WildcardType)t;
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
            return new WildcardTypeImpl(env, a);
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
        case TYPEVAR: return new TypeVariableImpl(env, (TypeVar)t);
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
        case ARRAY: return new ArrayTypeImpl(env, t);
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
        case BYTE: return PrimitiveType.byteType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
        case CHAR: return PrimitiveType.charType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
        case SHORT: return PrimitiveType.shortType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
        case INT: return PrimitiveType.intType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
        case LONG: return PrimitiveType.longType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
        case FLOAT: return PrimitiveType.floatType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
        case DOUBLE: return PrimitiveType.doubleType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
        case BOOLEAN: return PrimitiveType.booleanType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
        case VOID: return PrimitiveType.voidType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
        case ERROR:
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
            if (errToClassDoc)
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
                return env.getClassDoc((ClassSymbol)t.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
            // FALLTHRU
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
            return new PrimitiveType(t.tsym.getQualifiedName().toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
     * Convert a list of javac types into an array of javadoc types.
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
    public static com.sun.javadoc.Type[] getTypes(DocEnv env, List<Type> ts) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
        return getTypes(env, ts, new com.sun.javadoc.Type[ts.length()]);
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
     * Like the above version, but use and return the array given.
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    public static com.sun.javadoc.Type[] getTypes(DocEnv env, List<Type> ts,
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
                                                  com.sun.javadoc.Type res[]) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
        int i = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
        for (Type t : ts) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
            res[i++] = getType(env, t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
        return res;
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
    public static String getTypeName(Type t, boolean full) {
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14260
diff changeset
   134
        switch (t.getTag()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
        case ARRAY:
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   136
            StringBuilder s = new StringBuilder();
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14260
diff changeset
   137
            while (t.hasTag(ARRAY)) {
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   138
                s.append("[]");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
                t = ((ArrayType)t).elemtype;
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
            }
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   141
            s.insert(0, getTypeName(t, full));
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   142
            return s.toString();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
        case CLASS:
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
            return ClassDocImpl.getClassName((ClassSymbol)t.tsym, full);
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
            return t.tsym.getQualifiedName().toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
     * Return the string representation of a type use.  Bounds of type
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
     * variables are not included; bounds of wildcard types are.
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
     * Class names are qualified if "full" is true.
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
    static String getTypeString(DocEnv env, Type t, boolean full) {
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
   156
        // TODO: should annotations be included here?
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14260
diff changeset
   157
        switch (t.getTag()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
        case ARRAY:
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   159
            StringBuilder s = new StringBuilder();
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14260
diff changeset
   160
            while (t.hasTag(ARRAY)) {
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   161
                s.append("[]");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
                t = env.types.elemtype(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
            }
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   164
            s.insert(0, getTypeString(env, t, full));
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   165
            return s.toString();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
        case CLASS:
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
            return ParameterizedTypeImpl.
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
                        parameterizedTypeToString(env, (ClassType)t, full);
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
        case WILDCARD:
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
            Type.WildcardType a = (Type.WildcardType)t;
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
            return WildcardTypeImpl.wildcardTypeToString(env, a, full);
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
            return t.tsym.getQualifiedName().toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
     * Return the formal type parameters of a class or method as an
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
     * angle-bracketed string.  Each parameter is a type variable with
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
     * optional bounds.  Class names are qualified if "full" is true.
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
     * Return "" if there are no type parameters or we're hiding generics.
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
    static String typeParametersString(DocEnv env, Symbol sym, boolean full) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
        if (env.legacyDoclet || sym.type.getTypeArguments().isEmpty()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
            return "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
        }
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   187
        StringBuilder s = new StringBuilder();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
        for (Type t : sym.type.getTypeArguments()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
            s.append(s.length() == 0 ? "<" : ", ");
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
            s.append(TypeVariableImpl.typeVarToString(env, (TypeVar)t, full));
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
        s.append(">");
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
        return s.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
     * Return the actual type arguments of a parameterized type as an
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
     * angle-bracketed string.  Class name are qualified if "full" is true.
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
     * Return "" if there are no type arguments or we're hiding generics.
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
    static String typeArgumentsString(DocEnv env, ClassType cl, boolean full) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
        if (env.legacyDoclet || cl.getTypeArguments().isEmpty()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
            return "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
        }
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   205
        StringBuilder s = new StringBuilder();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
        for (Type t : cl.getTypeArguments()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
            s.append(s.length() == 0 ? "<" : ", ");
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
            s.append(getTypeString(env, t, full));
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
        s.append(">");
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
        return s.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
    private static class ArrayTypeImpl implements com.sun.javadoc.Type {
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
        Type arrayType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
        DocEnv env;
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
        ArrayTypeImpl(DocEnv env, Type arrayType) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
            this.env = env;
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
            this.arrayType = arrayType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
        private com.sun.javadoc.Type skipArraysCache = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
16969
b58d8a70d921 8009686: Generated javadoc documentation should be able to display type annotation on an array
bpatel
parents: 16556
diff changeset
   228
        public com.sun.javadoc.Type getElementType() {
b58d8a70d921 8009686: Generated javadoc documentation should be able to display type annotation on an array
bpatel
parents: 16556
diff changeset
   229
            return TypeMaker.getType(env, env.types.elemtype(arrayType));
b58d8a70d921 8009686: Generated javadoc documentation should be able to display type annotation on an array
bpatel
parents: 16556
diff changeset
   230
        }
b58d8a70d921 8009686: Generated javadoc documentation should be able to display type annotation on an array
bpatel
parents: 16556
diff changeset
   231
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
        private com.sun.javadoc.Type skipArrays() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
            if (skipArraysCache == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
                Type t;
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14260
diff changeset
   235
                for (t = arrayType; t.hasTag(ARRAY); t = env.types.elemtype(t)) { }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
                skipArraysCache = TypeMaker.getType(env, t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
            return skipArraysCache;
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
         * Return the type's dimension information, as a string.
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
         * <p>
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
         * For example, a two dimensional array of String returns '[][]'.
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
        public String dimension() {
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   247
            StringBuilder dimension = new StringBuilder();
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 14260
diff changeset
   248
            for (Type t = arrayType; t.hasTag(ARRAY); t = env.types.elemtype(t)) {
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   249
                dimension.append("[]");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
            return dimension.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
         * Return unqualified name of type excluding any dimension information.
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
         * <p>
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
         * For example, a two dimensional array of String returns 'String'.
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
        public String typeName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
            return skipArrays().typeName();
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
         * Return qualified name of type excluding any dimension information.
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
         *<p>
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
         * For example, a two dimensional array of String
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
         * returns 'java.lang.String'.
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
        public String qualifiedTypeName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
            return skipArrays().qualifiedTypeName();
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
         * Return the simple name of this type excluding any dimension information.
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
        public String simpleTypeName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
            return skipArrays().simpleTypeName();
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
         * Return this type as a class.  Array dimensions are ignored.
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
         *
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
         * @return a ClassDocImpl if the type is a Class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
         * Return null if it is a primitive type..
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
        public ClassDoc asClassDoc() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
            return skipArrays().asClassDoc();
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
         * Return this type as a <code>ParameterizedType</code> if it
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
         * represents a parameterized type.  Array dimensions are ignored.
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
        public ParameterizedType asParameterizedType() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
            return skipArrays().asParameterizedType();
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
         * Return this type as a <code>TypeVariable</code> if it represents
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
         * a type variable.  Array dimensions are ignored.
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
        public TypeVariable asTypeVariable() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
            return skipArrays().asTypeVariable();
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
         * Return null, as there are no arrays of wildcard types.
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
        public WildcardType asWildcardType() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
        /**
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
   314
         * Return null, as there are no annotations of the type
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
   315
         */
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
   316
        public AnnotatedType asAnnotatedType() {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
   317
            return null;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
   318
        }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
   319
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14359
diff changeset
   320
        /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
         * Return this type as an <code>AnnotationTypeDoc</code> if it
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
         * represents an annotation type.  Array dimensions are ignored.
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
        public AnnotationTypeDoc asAnnotationTypeDoc() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
            return skipArrays().asAnnotationTypeDoc();
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
         * Return true if this is an array of a primitive type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
        public boolean isPrimitive() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
            return skipArrays().isPrimitive();
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
         * Return a string representation of the type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
         *
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
         * Return name of type including any dimension information.
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
         * <p>
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
         * For example, a two dimensional array of String returns
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
         * <code>String[][]</code>.
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
         *
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
         * @return name of type including any dimension information.
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
         */
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   345
        @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
        public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
            return qualifiedTypeName() + dimension();
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
}