116117118119120121122123
// return new OptionalParamMethodBinding(expression,params) return application.createMethodBinding(expression, params); } else { return new ActionParamMethodBinding(application, expression); } }
396397398399400401402
/** * Call a method binding */ protected Object invokeMethod(String methodExpression) { return new ActionParamMethodBinding(application, methodExpression).invoke(facesContext, null); }