langtools/src/jdk.javadoc/share/classes/com/sun/javadoc/TypeVariable.java
changeset 38617 d93a7f64e231
parent 25874 83c19f00452c
equal deleted inserted replaced
38616:31e503b8ea65 38617:d93a7f64e231
    33  * A type variable may have explicit bounds, as in
    33  * A type variable may have explicit bounds, as in
    34  * {@code C<R extends Remote>}.
    34  * {@code C<R extends Remote>}.
    35  *
    35  *
    36  * @author Scott Seligman
    36  * @author Scott Seligman
    37  * @since 1.5
    37  * @since 1.5
       
    38  *
       
    39  * @deprecated
       
    40  *   The declarations in this package have been superseded by those
       
    41  *   in the package {@code jdk.javadoc.doclet}.
       
    42  *   For more information, see the <i>Migration Guide</i> in the documentation for that package.
    38  */
    43  */
       
    44 @Deprecated
    39 public interface TypeVariable extends Type {
    45 public interface TypeVariable extends Type {
    40 
    46 
    41     /**
    47     /**
    42      * Return the bounds of this type variable.
    48      * Return the bounds of this type variable.
    43      * These are the types given by the <i>extends</i> clause.
    49      * These are the types given by the <i>extends</i> clause.