src/share/classes/com/sun/tools/javadoc/TypeVariableImpl.java

Tue, 09 Oct 2012 19:10:00 -0700

author
jjg
date
Tue, 09 Oct 2012 19:10:00 -0700
changeset 1357
c75be5bc5283
parent 910
ebf7c13df6c0
child 1359
25e14ad23cef
permissions
-rw-r--r--

8000663: clean up langtools imports
Reviewed-by: darcy

     1 /*
     2  * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 package com.sun.tools.javadoc;
    28 import com.sun.javadoc.*;
    30 import com.sun.tools.javac.code.Kinds;
    31 import com.sun.tools.javac.code.Symbol;
    32 import com.sun.tools.javac.code.Symbol.ClassSymbol;
    33 import com.sun.tools.javac.code.Symbol.MethodSymbol;
    34 import com.sun.tools.javac.code.Type;
    35 import com.sun.tools.javac.code.Type.TypeVar;
    36 import com.sun.tools.javac.util.List;
    37 import com.sun.tools.javac.util.Name;
    38 import com.sun.tools.javac.util.Names;
    40 /**
    41  * Implementation of <code>TypeVariable</code>, which
    42  * represents a type variable.
    43  *
    44  * @author Scott Seligman
    45  * @since 1.5
    46  */
    47 public class TypeVariableImpl extends AbstractTypeImpl implements TypeVariable {
    49     TypeVariableImpl(DocEnv env, TypeVar type) {
    50         super(env, type);
    51     }
    53     /**
    54      * Return the bounds of this type variable.
    55      */
    56     public com.sun.javadoc.Type[] bounds() {
    57         return TypeMaker.getTypes(env, getBounds((TypeVar)type, env));
    58     }
    60     /**
    61      * Return the class, interface, method, or constructor within
    62      * which this type variable is declared.
    63      */
    64     public ProgramElementDoc owner() {
    65         Symbol osym = type.tsym.owner;
    66         if ((osym.kind & Kinds.TYP) != 0) {
    67             return env.getClassDoc((ClassSymbol)osym);
    68         }
    69         Names names = osym.name.table.names;
    70         if (osym.name == names.init) {
    71             return env.getConstructorDoc((MethodSymbol)osym);
    72         } else {
    73             return env.getMethodDoc((MethodSymbol)osym);
    74         }
    75     }
    77     /**
    78      * Return the ClassDoc of the erasure of this type variable.
    79      */
    80     @Override
    81     public ClassDoc asClassDoc() {
    82         return env.getClassDoc((ClassSymbol)env.types.erasure(type).tsym);
    83     }
    85     @Override
    86     public TypeVariable asTypeVariable() {
    87         return this;
    88     }
    90     @Override
    91     public String toString() {
    92         return typeVarToString(env, (TypeVar)type, true);
    93     }
    96     /**
    97      * Return the string form of a type variable along with any
    98      * "extends" clause.  Class names are qualified if "full" is true.
    99      */
   100     static String typeVarToString(DocEnv env, TypeVar v, boolean full) {
   101         StringBuilder s = new StringBuilder(v.toString());
   102         List<Type> bounds = getBounds(v, env);
   103         if (bounds.nonEmpty()) {
   104             boolean first = true;
   105             for (Type b : bounds) {
   106                 s.append(first ? " extends " : " & ");
   107                 s.append(TypeMaker.getTypeString(env, b, full));
   108                 first = false;
   109             }
   110         }
   111         return s.toString();
   112     }
   114     /**
   115      * Get the bounds of a type variable as listed in the "extends" clause.
   116      */
   117     private static List<Type> getBounds(TypeVar v, DocEnv env) {
   118         Name boundname = v.getUpperBound().tsym.getQualifiedName();
   119         if (boundname == boundname.table.names.java_lang_Object) {
   120             return List.nil();
   121         } else {
   122             return env.types.getBounds(v);
   123         }
   124     }
   125 }

mercurial