//-- process annotations
Enumeration enumeration = annotated.getAnnotations();
if (enumeration.hasMoreElements()) {
StringBuffer comment = new StringBuffer();
while (enumeration.hasMoreElements()) {
Annotation ann = (Annotation) enumeration.nextElement();
Enumeration documentations = ann.getDocumentation();
while (documentations.hasMoreElements()) {
Documentation documentation =
(Documentation) documentations.nextElement();
String content = documentation.getContent();
if ( content != null) comment.append(content);