diff -r 0e17c3c23e3b -r 8c0c63a6e3b7 src/share/classes/com/sun/tools/javadoc/AnnotationDescImpl.java --- a/src/share/classes/com/sun/tools/javadoc/AnnotationDescImpl.java Fri Jan 04 23:06:05 2013 -0800 +++ b/src/share/classes/com/sun/tools/javadoc/AnnotationDescImpl.java Sat Jan 05 00:55:53 2013 -0800 @@ -89,6 +89,15 @@ } /** + * Check for the synthesized bit on the annotation. + * + * @return true if the annotation is synthesized. + */ + public boolean isSynthesized() { + return annotation.isSynthesized(); + } + + /** * Returns a string representation of this annotation. * String is of one of the forms: * @com.example.foo(name1=val1, name2=val2)