if (readerAnnotation != null)
{
Class value = readerAnnotation.value();
ActionBeanAnnotationReader reader = ReflectHelper.createInstance(value,
ActionBeanAnnotationReader.class);
if (reader.readAnnotations(actionBeanClass))
{
reader.populateController(controllerAction);
}
}
}
}