< prev index next >

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

Print this page

        

*** 32,42 **** /** * A visitor of program elements based on their {@linkplain * ElementKind kind} with default behavior appropriate for source * versions {@link SourceVersion#RELEASE_9 RELEASE_9} through {@link ! * SourceVersion#RELEASE_11 RELEASE_11}. * * For {@linkplain * Element elements} <code><i>Xyz</i></code> that may have more than one * kind, the <code>visit<i>Xyz</i></code> methods in this class delegate * to the <code>visit<i>Xyz</i>As<i>Kind</i></code> method corresponding to the --- 32,42 ---- /** * A visitor of program elements based on their {@linkplain * ElementKind kind} with default behavior appropriate for source * versions {@link SourceVersion#RELEASE_9 RELEASE_9} through {@link ! * SourceVersion#RELEASE_12 RELEASE_12}. * * For {@linkplain * Element elements} <code><i>Xyz</i></code> that may have more than one * kind, the <code>visit<i>Xyz</i></code> methods in this class delegate * to the <code>visit<i>Xyz</i>As<i>Kind</i></code> method corresponding to the
*** 78,88 **** * @see ElementKindVisitor7 * @see ElementKindVisitor8 * @since 9 * @spec JPMS */ ! @SupportedSourceVersion(RELEASE_11) public class ElementKindVisitor9<R, P> extends ElementKindVisitor8<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */ --- 78,88 ---- * @see ElementKindVisitor7 * @see ElementKindVisitor8 * @since 9 * @spec JPMS */ ! @SupportedSourceVersion(RELEASE_12) public class ElementKindVisitor9<R, P> extends ElementKindVisitor8<R, P> { /** * Constructor for concrete subclasses; uses {@code null} for the * default value. */
< prev index next >