< prev index next >

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

Print this page

        

*** 31,41 **** import static javax.lang.model.SourceVersion.*; /** * A skeletal visitor of types 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 TypeVisitor} 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. --- 31,41 ---- import static javax.lang.model.SourceVersion.*; /** * A skeletal visitor of types with default behavior appropriate for * source versions {@link SourceVersion#RELEASE_9 RELEASE_9} through ! * {@link SourceVersion#RELEASE_13 RELEASE_13}. * * <p> <b>WARNING:</b> The {@code TypeVisitor} 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.
*** 61,71 **** * @see AbstractTypeVisitor6 * @see AbstractTypeVisitor7 * @see AbstractTypeVisitor8 * @since 9 */ ! @SupportedSourceVersion(RELEASE_12) public abstract class AbstractTypeVisitor9<R, P> extends AbstractTypeVisitor8<R, P> { /** * Constructor for concrete subclasses to call. */ protected AbstractTypeVisitor9() { --- 61,71 ---- * @see AbstractTypeVisitor6 * @see AbstractTypeVisitor7 * @see AbstractTypeVisitor8 * @since 9 */ ! @SupportedSourceVersion(RELEASE_13) public abstract class AbstractTypeVisitor9<R, P> extends AbstractTypeVisitor8<R, P> { /** * Constructor for concrete subclasses to call. */ protected AbstractTypeVisitor9() {
< prev index next >