< prev index next >

src/java.compiler/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor9.java

Print this page

        

*** 30,40 **** import javax.annotation.processing.SupportedSourceVersion; /** * A skeletal visitor for annotation values with default behavior * appropriate for source versions {@link SourceVersion#RELEASE_9 ! * RELEASE_9} through {@link SourceVersion#RELEASE_11 RELEASE_11}. * * <p> <b>WARNING:</b> The {@code AnnotationValueVisitor} interface * implemented by this class may have methods added to it in the * future to accommodate new, currently unknown, language structures * added to future versions of the Java&trade; programming language. --- 30,40 ---- import javax.annotation.processing.SupportedSourceVersion; /** * A skeletal visitor for annotation values with default behavior * appropriate for source versions {@link SourceVersion#RELEASE_9 ! * RELEASE_9} through {@link SourceVersion#RELEASE_12 RELEASE_12}. * * <p> <b>WARNING:</b> The {@code AnnotationValueVisitor} interface * implemented by this class may have methods added to it in the * future to accommodate new, currently unknown, language structures * added to future versions of the Java&trade; programming language.
*** 57,67 **** * @see AbstractAnnotationValueVisitor6 * @see AbstractAnnotationValueVisitor7 * @see AbstractAnnotationValueVisitor8 * @since 9 */ ! @SupportedSourceVersion(RELEASE_11) public abstract class AbstractAnnotationValueVisitor9<R, P> extends AbstractAnnotationValueVisitor8<R, P> { /** * Constructor for concrete subclasses to call. */ --- 57,67 ---- * @see AbstractAnnotationValueVisitor6 * @see AbstractAnnotationValueVisitor7 * @see AbstractAnnotationValueVisitor8 * @since 9 */ ! @SupportedSourceVersion(RELEASE_12) public abstract class AbstractAnnotationValueVisitor9<R, P> extends AbstractAnnotationValueVisitor8<R, P> { /** * Constructor for concrete subclasses to call. */
< prev index next >