langtools/src/share/classes/com/sun/tools/javadoc/TypeMaker.java
author jjg
Tue, 09 Oct 2012 19:10:00 -0700
changeset 14258 8d2148961366
parent 8631 664f84942e74
child 14260 727a84636f12
permissions -rw-r--r--
8000663: clean up langtools imports Reviewed-by: darcy
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: 8631
diff changeset
     2
 * Copyright (c) 1997, 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: 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
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package com.sun.tools.javadoc;
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;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import com.sun.tools.javac.code.Type;
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 8631
diff changeset
    32
import com.sun.tools.javac.code.Type.ArrayType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import com.sun.tools.javac.code.Type.ClassType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import com.sun.tools.javac.code.Type.TypeVar;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import com.sun.tools.javac.util.List;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import static com.sun.tools.javac.code.TypeTags.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
public class TypeMaker {
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
    public static com.sun.javadoc.Type getType(DocEnv env, Type t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
        return getType(env, t, true);
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
     * @param errToClassDoc  if true, ERROR type results in a ClassDoc;
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
     *          false preserves legacy behavior
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
     */
1870
57a1138dffc8 6795903: fix latent build warnings in langtools repository
jjg
parents: 10
diff changeset
    49
    @SuppressWarnings("fallthrough")
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
    public static com.sun.javadoc.Type getType(DocEnv env, Type t,
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
                                               boolean errToClassDoc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
        if (env.legacyDoclet) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
            t = env.types.erasure(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
        switch (t.tag) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
        case CLASS:
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
            if (ClassDocImpl.isGeneric((ClassSymbol)t.tsym)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
                return env.getParameterizedType((ClassType)t);
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
                return env.getClassDoc((ClassSymbol)t.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
        case WILDCARD:
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
            Type.WildcardType a = (Type.WildcardType)t;
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
            return new WildcardTypeImpl(env, a);
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        case TYPEVAR: return new TypeVariableImpl(env, (TypeVar)t);
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
        case ARRAY: return new ArrayTypeImpl(env, t);
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
        case BYTE: return PrimitiveType.byteType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
        case CHAR: return PrimitiveType.charType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
        case SHORT: return PrimitiveType.shortType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
        case INT: return PrimitiveType.intType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
        case LONG: return PrimitiveType.longType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
        case FLOAT: return PrimitiveType.floatType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
        case DOUBLE: return PrimitiveType.doubleType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
        case BOOLEAN: return PrimitiveType.booleanType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
        case VOID: return PrimitiveType.voidType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
        case ERROR:
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
            if (errToClassDoc)
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
                return env.getClassDoc((ClassSymbol)t.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
            // FALLTHRU
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
            return new PrimitiveType(t.tsym.getQualifiedName().toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
     * Convert a list of javac types into an array of javadoc types.
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
    public static com.sun.javadoc.Type[] getTypes(DocEnv env, List<Type> ts) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
        return getTypes(env, ts, new com.sun.javadoc.Type[ts.length()]);
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
     * Like the above version, but use and return the array given.
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
    public static com.sun.javadoc.Type[] getTypes(DocEnv env, List<Type> ts,
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
                                                  com.sun.javadoc.Type res[]) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
        int i = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
        for (Type t : ts) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
            res[i++] = getType(env, t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
        return res;
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
    public static String getTypeName(Type t, boolean full) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
        switch (t.tag) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
        case ARRAY:
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   107
            StringBuilder s = new StringBuilder();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
            while (t.tag == ARRAY) {
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   109
                s.append("[]");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
                t = ((ArrayType)t).elemtype;
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
            }
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   112
            s.insert(0, getTypeName(t, full));
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   113
            return s.toString();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
        case CLASS:
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
            return ClassDocImpl.getClassName((ClassSymbol)t.tsym, full);
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
            return t.tsym.getQualifiedName().toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
        }
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
     * Return the string representation of a type use.  Bounds of type
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
     * variables are not included; bounds of wildcard types are.
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
     * Class names are qualified if "full" is true.
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
    static String getTypeString(DocEnv env, Type t, boolean full) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
        switch (t.tag) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
        case ARRAY:
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   129
            StringBuilder s = new StringBuilder();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
            while (t.tag == ARRAY) {
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   131
                s.append("[]");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
                t = env.types.elemtype(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
            }
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   134
            s.insert(0, getTypeString(env, t, full));
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   135
            return s.toString();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
        case CLASS:
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
            return ParameterizedTypeImpl.
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
                        parameterizedTypeToString(env, (ClassType)t, full);
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
        case WILDCARD:
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
            Type.WildcardType a = (Type.WildcardType)t;
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
            return WildcardTypeImpl.wildcardTypeToString(env, a, full);
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
            return t.tsym.getQualifiedName().toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
        }
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
     * Return the formal type parameters of a class or method as an
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
     * angle-bracketed string.  Each parameter is a type variable with
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
     * optional bounds.  Class names are qualified if "full" is true.
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
     * Return "" if there are no type parameters or we're hiding generics.
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
    static String typeParametersString(DocEnv env, Symbol sym, boolean full) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
        if (env.legacyDoclet || sym.type.getTypeArguments().isEmpty()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
            return "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
        }
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   157
        StringBuilder s = new StringBuilder();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
        for (Type t : sym.type.getTypeArguments()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
            s.append(s.length() == 0 ? "<" : ", ");
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
            s.append(TypeVariableImpl.typeVarToString(env, (TypeVar)t, full));
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
        s.append(">");
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
        return s.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
     * Return the actual type arguments of a parameterized type as an
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
     * angle-bracketed string.  Class name are qualified if "full" is true.
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
     * Return "" if there are no type arguments or we're hiding generics.
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
    static String typeArgumentsString(DocEnv env, ClassType cl, boolean full) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
        if (env.legacyDoclet || cl.getTypeArguments().isEmpty()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
            return "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
        }
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   175
        StringBuilder s = new StringBuilder();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
        for (Type t : cl.getTypeArguments()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
            s.append(s.length() == 0 ? "<" : ", ");
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
            s.append(getTypeString(env, t, full));
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
        s.append(">");
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
        return s.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
    private static class ArrayTypeImpl implements com.sun.javadoc.Type {
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
        Type arrayType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
        DocEnv env;
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
        ArrayTypeImpl(DocEnv env, Type arrayType) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
            this.env = env;
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
            this.arrayType = arrayType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
        private com.sun.javadoc.Type skipArraysCache = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
        private com.sun.javadoc.Type skipArrays() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
            if (skipArraysCache == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
                Type t;
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
                for (t = arrayType; t.tag == ARRAY; t = env.types.elemtype(t)) { }
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
                skipArraysCache = TypeMaker.getType(env, t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
            return skipArraysCache;
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
         * Return the type's dimension information, as a string.
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
         * <p>
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
         * For example, a two dimensional array of String returns '[][]'.
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
        public String dimension() {
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   213
            StringBuilder dimension = new StringBuilder();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
            for (Type t = arrayType; t.tag == ARRAY; t = env.types.elemtype(t)) {
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   215
                dimension.append("[]");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
            return dimension.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
         * Return unqualified name of type excluding any dimension information.
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
         * <p>
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
         * For example, a two dimensional array of String returns 'String'.
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
        public String typeName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
            return skipArrays().typeName();
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
         * Return qualified name of type excluding any dimension information.
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
         *<p>
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
         * For example, a two dimensional array of String
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
         * returns 'java.lang.String'.
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
        public String qualifiedTypeName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
            return skipArrays().qualifiedTypeName();
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
         * Return the simple name of this type excluding any dimension information.
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
        public String simpleTypeName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
            return skipArrays().simpleTypeName();
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
         * Return this type as a class.  Array dimensions are ignored.
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
         *
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
         * @return a ClassDocImpl if the type is a Class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
         * Return null if it is a primitive type..
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
        public ClassDoc asClassDoc() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
            return skipArrays().asClassDoc();
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
         * Return this type as a <code>ParameterizedType</code> if it
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
         * represents a parameterized type.  Array dimensions are ignored.
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
        public ParameterizedType asParameterizedType() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
            return skipArrays().asParameterizedType();
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 this type as a <code>TypeVariable</code> if it represents
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
         * a type variable.  Array dimensions are ignored.
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
        public TypeVariable asTypeVariable() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
            return skipArrays().asTypeVariable();
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
         * Return null, as there are no arrays of wildcard types.
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
        public WildcardType asWildcardType() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
         * Return this type as an <code>AnnotationTypeDoc</code> if it
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
         * represents an annotation type.  Array dimensions are ignored.
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
        public AnnotationTypeDoc asAnnotationTypeDoc() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
            return skipArrays().asAnnotationTypeDoc();
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
         * Return true if this is an array of a primitive type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
        public boolean isPrimitive() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
            return skipArrays().isPrimitive();
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
         * Return a string representation of the type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
         *
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
         * Return name of type including any dimension information.
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
         * <p>
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
         * For example, a two dimensional array of String returns
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
         * <code>String[][]</code>.
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
         *
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
         * @return name of type including any dimension information.
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
         */
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 5520
diff changeset
   304
        @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
        public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
            return qualifiedTypeName() + dimension();
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
}