langtools/src/java.compiler/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor6.java
changeset 39367 3a9d6e8c6fde
parent 25874 83c19f00452c
child 43147 823bfbf9e914
equal deleted inserted replaced
39366:8bf5fe72ca88 39367:3a9d6e8c6fde
   111     }
   111     }
   112 
   112 
   113     /**
   113     /**
   114      * {@inheritDoc}
   114      * {@inheritDoc}
   115      *
   115      *
   116      * <p>The default implementation of this method in {@code
   116      * @implSpec The default implementation of this method in {@code
   117      * AbstractAnnotationValueVisitor6} will always throw {@code
   117      * AbstractAnnotationValueVisitor6} will always throw {@code
   118      * UnknownAnnotationValueException}.  This behavior is not
   118      * UnknownAnnotationValueException}.  This behavior is not
   119      * required of a subclass.
   119      * required of a subclass.
   120      *
   120      *
   121      * @param av {@inheritDoc}
   121      * @param av {@inheritDoc}
   122      * @param p  {@inheritDoc}
   122      * @param p  {@inheritDoc}
   123      */
   123      */
       
   124     @Override
   124     public R visitUnknown(AnnotationValue av, P p) {
   125     public R visitUnknown(AnnotationValue av, P p) {
   125         throw new UnknownAnnotationValueException(av, p);
   126         throw new UnknownAnnotationValueException(av, p);
   126     }
   127     }
   127 }
   128 }