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