{
processPrettyActionAnnotation(actionAnnotation, method, classMappingIds);
}
// is there a @URLAction container annotation on the class?
URLActions actionsAnnotation = method.getAnnotation(URLActions.class);
if (actionsAnnotation != null)
{
// process all @URLAction annotations
for (URLAction child : actionsAnnotation.actions())
{
processPrettyActionAnnotation(child, method, classMappingIds);
}
}
}