}
} else if (node.getParent() instanceof MethodDeclaration) {
// a method
MethodDeclaration parent = (MethodDeclaration) node.getParent();
JavaMethod method = getMethodFor(parent, cls);
if (method != null) {
for (Object o : node.tags()) {
TagElement tag = (TagElement) o;
JavadocTagElement docs = handleTagFragment(tag, method);
method.getJavadocs().add(docs);
}
}
}
} catch (SemanticHandlerException e) {