for (Annotation annotation : annotations)
{
Class<? extends Annotation> annotationType = annotation.annotationType();
InjectionFactoryClass factoryClass = annotationType.getAnnotation(InjectionFactoryClass.class);
if (factoryClass != null)
{
hasFactory = true;
InjectionHandlerFactory factory = ReflectHelper.createInstance(factoryClass.value(),
InjectionHandlerFactory.class);
if (wrapper == null)
{
InjectionSetter inputSetter = createSetter(actionClass, m);