Node contained = node.jjtGetChild(0);
if (contained instanceof ASTSingleMemberValue)
{
Class<?> type = getMemberType(annotation, "value");
AnnotationCreator creator = new AnnotationCreator(annotation, type, loader);
contained.jjtAccept(creator, "value");
map.put("value", creator.typeValue);
}
else
{
ASTMemberValuePairs pairs = (ASTMemberValuePairs) contained;