src/java.compiler/share/classes/javax/lang/model/util/AbstractElementVisitor9.java
changeset 50892 a5557f24b4d4
parent 49941 2f0c14b69efa
child 53023 6879069d9d94
equal deleted inserted replaced
50891:9948ea5ea1af 50892:a5557f24b4d4
    32 
    32 
    33 
    33 
    34 /**
    34 /**
    35  * A skeletal visitor of program elements with default behavior
    35  * A skeletal visitor of program elements with default behavior
    36  * appropriate for source versions {@link SourceVersion#RELEASE_9
    36  * appropriate for source versions {@link SourceVersion#RELEASE_9
    37  * RELEASE_9} through {@link SourceVersion#RELEASE_11 RELEASE_11}.
    37  * RELEASE_9} through {@link SourceVersion#RELEASE_12 RELEASE_12}.
    38  *
    38  *
    39  * <p> <b>WARNING:</b> The {@code ElementVisitor} interface
    39  * <p> <b>WARNING:</b> The {@code ElementVisitor} interface
    40  * implemented by this class may have methods added to it in the
    40  * implemented by this class may have methods added to it in the
    41  * future to accommodate new, currently unknown, language structures
    41  * future to accommodate new, currently unknown, language structures
    42  * added to future versions of the Java&trade; programming language.
    42  * added to future versions of the Java&trade; programming language.
    63  * @see AbstractElementVisitor7
    63  * @see AbstractElementVisitor7
    64  * @see AbstractElementVisitor8
    64  * @see AbstractElementVisitor8
    65  * @since 9
    65  * @since 9
    66  * @spec JPMS
    66  * @spec JPMS
    67  */
    67  */
    68 @SupportedSourceVersion(RELEASE_11)
    68 @SupportedSourceVersion(RELEASE_12)
    69 public abstract class AbstractElementVisitor9<R, P> extends AbstractElementVisitor8<R, P> {
    69 public abstract class AbstractElementVisitor9<R, P> extends AbstractElementVisitor8<R, P> {
    70     /**
    70     /**
    71      * Constructor for concrete subclasses to call.
    71      * Constructor for concrete subclasses to call.
    72      */
    72      */
    73     protected AbstractElementVisitor9(){
    73     protected AbstractElementVisitor9(){