src/java.compiler/share/classes/javax/lang/model/util/AbstractTypeVisitor9.java
changeset 53023 6879069d9d94
parent 50892 a5557f24b4d4
child 55382 30b1b7b4dd86
equal deleted inserted replaced
53022:ece620f32d2d 53023:6879069d9d94
    31 import static javax.lang.model.SourceVersion.*;
    31 import static javax.lang.model.SourceVersion.*;
    32 
    32 
    33 /**
    33 /**
    34  * A skeletal visitor of types with default behavior appropriate for
    34  * A skeletal visitor of types with default behavior appropriate for
    35  * source versions {@link SourceVersion#RELEASE_9 RELEASE_9} through
    35  * source versions {@link SourceVersion#RELEASE_9 RELEASE_9} through
    36  * {@link SourceVersion#RELEASE_12 RELEASE_12}.
    36  * {@link SourceVersion#RELEASE_13 RELEASE_13}.
    37  *
    37  *
    38  * <p> <b>WARNING:</b> The {@code TypeVisitor} interface implemented
    38  * <p> <b>WARNING:</b> The {@code TypeVisitor} interface implemented
    39  * by this class may have methods added to it in the future to
    39  * by this class may have methods added to it in the future to
    40  * accommodate new, currently unknown, language structures added to
    40  * accommodate new, currently unknown, language structures added to
    41  * future versions of the Java&trade; programming language.
    41  * future versions of the Java&trade; programming language.
    61  * @see AbstractTypeVisitor6
    61  * @see AbstractTypeVisitor6
    62  * @see AbstractTypeVisitor7
    62  * @see AbstractTypeVisitor7
    63  * @see AbstractTypeVisitor8
    63  * @see AbstractTypeVisitor8
    64  * @since 9
    64  * @since 9
    65  */
    65  */
    66 @SupportedSourceVersion(RELEASE_12)
    66 @SupportedSourceVersion(RELEASE_13)
    67 public abstract class AbstractTypeVisitor9<R, P> extends AbstractTypeVisitor8<R, P> {
    67 public abstract class AbstractTypeVisitor9<R, P> extends AbstractTypeVisitor8<R, P> {
    68     /**
    68     /**
    69      * Constructor for concrete subclasses to call.
    69      * Constructor for concrete subclasses to call.
    70      */
    70      */
    71     protected AbstractTypeVisitor9() {
    71     protected AbstractTypeVisitor9() {