src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor9.java
changeset 50892 a5557f24b4d4
parent 49941 2f0c14b69efa
child 53023 6879069d9d94
equal deleted inserted replaced
50891:9948ea5ea1af 50892:a5557f24b4d4
    32 
    32 
    33 /**
    33 /**
    34  * A visitor of types based on their {@linkplain TypeKind kind} with
    34  * A visitor of types based on their {@linkplain TypeKind kind} with
    35  * default behavior appropriate for source versions {@link
    35  * default behavior appropriate for source versions {@link
    36  * SourceVersion#RELEASE_9 RELEASE_9} through {@link
    36  * SourceVersion#RELEASE_9 RELEASE_9} through {@link
    37  * SourceVersion#RELEASE_11 RELEASE_11}.
    37  * SourceVersion#RELEASE_12 RELEASE_12}.
    38  *
    38  *
    39  * For {@linkplain
    39  * For {@linkplain
    40  * TypeMirror types} <code><i>Xyz</i></code> that may have more than one
    40  * TypeMirror types} <code><i>Xyz</i></code> that may have more than one
    41  * kind, the <code>visit<i>Xyz</i></code> methods in this class delegate
    41  * kind, the <code>visit<i>Xyz</i></code> methods in this class delegate
    42  * to the <code>visit<i>Xyz</i>As<i>Kind</i></code> method corresponding to the
    42  * to the <code>visit<i>Xyz</i>As<i>Kind</i></code> method corresponding to the
    75  * @see TypeKindVisitor6
    75  * @see TypeKindVisitor6
    76  * @see TypeKindVisitor7
    76  * @see TypeKindVisitor7
    77  * @see TypeKindVisitor8
    77  * @see TypeKindVisitor8
    78  * @since 9
    78  * @since 9
    79  */
    79  */
    80 @SupportedSourceVersion(RELEASE_11)
    80 @SupportedSourceVersion(RELEASE_12)
    81 public class TypeKindVisitor9<R, P> extends TypeKindVisitor8<R, P> {
    81 public class TypeKindVisitor9<R, P> extends TypeKindVisitor8<R, P> {
    82     /**
    82     /**
    83      * Constructor for concrete subclasses to call; uses {@code null}
    83      * Constructor for concrete subclasses to call; uses {@code null}
    84      * for the default value.
    84      * for the default value.
    85      */
    85      */