src/share/classes/javax/lang/model/type/TypeVariable.java

Fri, 06 Feb 2009 12:49:48 -0800

author
darcy
date
Fri, 06 Feb 2009 12:49:48 -0800
changeset 216
58fcba61a77d
parent 1
9a66ca7c79fa
child 554
9d9f26857129
permissions
-rw-r--r--

6794071: Provide exception superclass for UnknownFooExceptions
Reviewed-by: jjg

     1 /*
     2  * Copyright 2005-2006 Sun Microsystems, Inc.  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.  Sun designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Sun 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22  * CA 95054 USA or visit www.sun.com if you need additional information or
    23  * have any questions.
    24  */
    26 package javax.lang.model.type;
    29 import javax.lang.model.element.Element;
    30 import javax.lang.model.element.TypeParameterElement;
    31 import javax.lang.model.util.Types;
    34 /**
    35  * Represents a type variable.
    36  * A type variable may be explicitly declared by a
    37  * {@linkplain TypeParameterElement type parameter} of a
    38  * type, method, or constructor.
    39  * A type variable may also be declared implicitly, as by
    40  * the capture conversion of a wildcard type argument
    41  * (see chapter 5 of <i>The Java Language Specification, Third
    42  * Edition</i>).
    43  *
    44  * @author Joseph D. Darcy
    45  * @author Scott Seligman
    46  * @author Peter von der Ah&eacute;
    47  * @see TypeParameterElement
    48  * @since 1.6
    49  */
    50 public interface TypeVariable extends ReferenceType {
    52     /**
    53      * Returns the element corresponding to this type variable.
    54      *
    55      * @return the element corresponding to this type variable
    56      */
    57     Element asElement();
    59     /**
    60      * Returns the upper bound of this type variable.
    61      *
    62      * <p> If this type variable was declared with no explicit
    63      * upper bounds, the result is {@code java.lang.Object}.
    64      * If it was declared with multiple upper bounds,
    65      * the result is an intersection type (modeled as a
    66      * {@link DeclaredType}).
    67      * Individual bounds can be found by examining the result's
    68      * {@linkplain Types#directSupertypes(TypeMirror) supertypes}.
    69      *
    70      * @return the upper bound of this type variable
    71      */
    72     TypeMirror getUpperBound();
    74     /**
    75      * Returns the lower bound of this type variable.  While a type
    76      * parameter cannot include an explicit lower bound declaration,
    77      * capture conversion can produce a type variable with a
    78      * non-trivial lower bound.  Type variables otherwise have a
    79      * lower bound of {@link NullType}.
    80      *
    81      * @return the lower bound of this type variable
    82      */
    83     TypeMirror getLowerBound();
    84 }

mercurial