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