langtools/src/java.compiler/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor6.java
changeset 44018 d7e24dd75175
parent 43257 df68602dc422
child 44179 4fa9641810db
equal deleted inserted replaced
44017:2bcd5b46cfe5 44018:d7e24dd75175
    77      */
    77      */
    78     @Deprecated
    78     @Deprecated
    79     protected AbstractAnnotationValueVisitor6() {}
    79     protected AbstractAnnotationValueVisitor6() {}
    80 
    80 
    81     /**
    81     /**
    82      * Visits an annotation value as if by passing itself to that
    82      * Visits any annotation value as if by passing itself to that
    83      * value's {@link AnnotationValue#accept accept}.  The invocation
    83      * value's {@link AnnotationValue#accept accept}.  The invocation
    84      * {@code v.visit(av)} is equivalent to {@code av.accept(v, p)}.
    84      * {@code v.visit(av, p)} is equivalent to {@code av.accept(v, p)}.
    85      * @param av {@inheritDoc}
    85      * @param av {@inheritDoc}
    86      * @param p  {@inheritDoc}
    86      * @param p  {@inheritDoc}
    87      */
    87      */
    88     public final R visit(AnnotationValue av, P p) {
    88     public final R visit(AnnotationValue av, P p) {
    89         return av.accept(this, p);
    89         return av.accept(this, p);