< prev index next >

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

Print this page

        

*** 31,41 **** import static javax.lang.model.SourceVersion.*; /** * A simple visitor of types with default behavior appropriate for * source versions {@link SourceVersion#RELEASE_9 RELEASE_9} through ! * {@link SourceVersion#RELEASE_11 RELEASE_11}. * * 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 types 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.
*** 71,81 **** * @see SimpleTypeVisitor6 * @see SimpleTypeVisitor7 * @see SimpleTypeVisitor8 * @since 9 */ ! @SupportedSourceVersion(RELEASE_11) public class SimpleTypeVisitor9<R, P> extends SimpleTypeVisitor8<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */ --- 71,81 ---- * @see SimpleTypeVisitor6 * @see SimpleTypeVisitor7 * @see SimpleTypeVisitor8 * @since 9 */ ! @SupportedSourceVersion(RELEASE_12) public class SimpleTypeVisitor9<R, P> extends SimpleTypeVisitor8<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */
< prev index next >