langtools/src/share/classes/com/sun/mirror/type/WildcardType.java
changeset 3378 22011d9a9398
parent 10 06bc494ca11e
child 5520 86e4b9a9da40
equal deleted inserted replaced
3377:22083952ee8f 3378:22011d9a9398
    39  *
    39  *
    40  * <p> A wildcard may have its upper bound explicitly set by an
    40  * <p> A wildcard may have its upper bound explicitly set by an
    41  * <tt>extends</tt> clause, its lower bound explicitly set by a
    41  * <tt>extends</tt> clause, its lower bound explicitly set by a
    42  * <tt>super</tt> clause, or neither (but not both).
    42  * <tt>super</tt> clause, or neither (but not both).
    43  *
    43  *
       
    44  * @deprecated All components of this API have been superseded by the
       
    45  * standardized annotation processing API.  The replacement for the
       
    46  * functionality of this interface is {@link
       
    47  * javax.lang.model.type.WildcardType}.
       
    48  *
    44  * @author Joseph D. Darcy
    49  * @author Joseph D. Darcy
    45  * @author Scott Seligman
    50  * @author Scott Seligman
    46  * @since 1.5
    51  * @since 1.5
    47  */
    52  */
    48 
    53 @Deprecated
       
    54 @SuppressWarnings("deprecation")
    49 public interface WildcardType extends TypeMirror {
    55 public interface WildcardType extends TypeMirror {
    50 
    56 
    51     /**
    57     /**
    52      * Returns the upper bounds of this wildcard.
    58      * Returns the upper bounds of this wildcard.
    53      * If no upper bound is explicitly declared, then
    59      * If no upper bound is explicitly declared, then