src/share/classes/com/sun/tools/javadoc/AnnotationDescImpl.java

changeset 1477
8c0c63a6e3b7
parent 1359
25e14ad23cef
child 2227
998b10c43157
equal deleted inserted replaced
1476:0e17c3c23e3b 1477:8c0c63a6e3b7
87 } 87 }
88 return res; 88 return res;
89 } 89 }
90 90
91 /** 91 /**
92 * Check for the synthesized bit on the annotation.
93 *
94 * @return true if the annotation is synthesized.
95 */
96 public boolean isSynthesized() {
97 return annotation.isSynthesized();
98 }
99
100 /**
92 * Returns a string representation of this annotation. 101 * Returns a string representation of this annotation.
93 * String is of one of the forms: 102 * String is of one of the forms:
94 * @com.example.foo(name1=val1, name2=val2) 103 * @com.example.foo(name1=val1, name2=val2)
95 * @com.example.foo(val) 104 * @com.example.foo(val)
96 * @com.example.foo 105 * @com.example.foo

mercurial