< prev index next >

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

Print this page

        

*** 31,41 **** import static javax.lang.model.SourceVersion.*; /** * A simple visitor of program elements with default behavior * appropriate for source versions {@link SourceVersion#RELEASE_9 ! * RELEASE_9} through {@link SourceVersion#RELEASE_12 RELEASE_12}. * * Visit methods corresponding to {@code RELEASE_9} and earlier * language constructs call {@link #defaultAction defaultAction}, * passing their arguments to {@code defaultAction}'s corresponding * parameters. --- 31,41 ---- import static javax.lang.model.SourceVersion.*; /** * A simple visitor of program elements with default behavior * appropriate for source versions {@link SourceVersion#RELEASE_9 ! * RELEASE_9} through {@link SourceVersion#RELEASE_13 RELEASE_13}. * * Visit methods corresponding to {@code RELEASE_9} and earlier * language constructs call {@link #defaultAction defaultAction}, * passing their arguments to {@code defaultAction}'s corresponding * parameters.
*** 71,81 **** * @see SimpleElementVisitor7 * @see SimpleElementVisitor8 * @since 9 * @spec JPMS */ ! @SupportedSourceVersion(RELEASE_12) public class SimpleElementVisitor9<R, P> extends SimpleElementVisitor8<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */ --- 71,81 ---- * @see SimpleElementVisitor7 * @see SimpleElementVisitor8 * @since 9 * @spec JPMS */ ! @SupportedSourceVersion(RELEASE_13) public class SimpleElementVisitor9<R, P> extends SimpleElementVisitor8<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */
< prev index next >