pa.setTypeName( typeDecl.getQualifiedName() );
}
public void include( MemberDeclaration memberDecl, AnnotationInstance annotation )
{
AnnotatedElement element = _doc.getProcessedAnnotations().addNewAnnotatedElement();
String name = memberDecl instanceof TypeDeclaration
? ( ( TypeDeclaration ) memberDecl ).getQualifiedName()
: memberDecl.getSimpleName();
element.setElementName( name );
ProcessedAnnotation xmlAnnotation = element.addNewAnnotation();
include( xmlAnnotation, annotation );
}