< prev index next >

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

Print this page

        

*** 82,91 **** --- 82,92 ---- * Visits any annotation value as if by passing itself to that * value's {@link AnnotationValue#accept accept}. The invocation * {@code v.visit(av, p)} is equivalent to {@code av.accept(v, p)}. * @param av {@inheritDoc} * @param p {@inheritDoc} + * @return {@inheritDoc} */ public final R visit(AnnotationValue av, P p) { return av.accept(this, p); }
*** 94,103 **** --- 95,105 ---- * value's {@link AnnotationValue#accept accept} method passing * {@code null} for the additional parameter. The invocation * {@code v.visit(av)} is equivalent to {@code av.accept(v, * null)}. * @param av {@inheritDoc} + * @return {@inheritDoc} */ public final R visit(AnnotationValue av) { return av.accept(this, null); }
*** 109,118 **** --- 111,121 ---- * new UnknownAnnotationValueException(av, p)}. This behavior is not * required of a subclass. * * @param av {@inheritDoc} * @param p {@inheritDoc} + * @return {@inheritDoc} */ @Override public R visitUnknown(AnnotationValue av, P p) { throw new UnknownAnnotationValueException(av, p); }
< prev index next >