112113114115116117118119120121122
String methodName = getMethodName(context, parameterName); if (methodName == null) { action.execute(); } else { Method method = getHelper().getMethod(actionBean, methodName); ReflectHelper.invokeMethod(actionBean, method, String.class);
6566676869707172737475
} if (cancelled) action.cancel(); else action.execute(); return findActionForward(actionBean, context); } }