Package org.strecks.action

Examples of org.strecks.action.BasicDispatchAction.unspecified()


    String methodName = getMethodName(context, parameterName);
    String result = null;
    if (methodName == null)
    {
      result = action.unspecified();
    }
    else
    {
      Method method = helper.getMethod(action, methodName);
      result = ReflectHelper.invokeMethod(action, method, String.class);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.