[jboss-cvs] jboss-seam/src/main/org/jboss/seam/actionparam ...
Gavin King
gavin.king at jboss.com
Tue Feb 13 13:49:03 EST 2007
User: gavin
Date: 07/02/13 13:49:03
Modified: src/main/org/jboss/seam/actionparam
ActionParamBindingHelper.java
ActionParamMethodBinding.java
Log:
action expressions with params in SeamTest
Revision Changes Path
1.3 +1 -2 jboss-seam/src/main/org/jboss/seam/actionparam/ActionParamBindingHelper.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ActionParamBindingHelper.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/actionparam/ActionParamBindingHelper.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- ActionParamBindingHelper.java 25 Oct 2006 15:14:34 -0000 1.2
+++ ActionParamBindingHelper.java 13 Feb 2007 18:49:03 -0000 1.3
@@ -43,8 +43,7 @@
private MethodExpressionParser parser;
- ActionParamBindingHelper(Application application,
- String expWithParams)
+ ActionParamBindingHelper(Application application, String expWithParams)
{
this.application = application;
this.expWithParams = expWithParams;
1.5 +4 -3 jboss-seam/src/main/org/jboss/seam/actionparam/ActionParamMethodBinding.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ActionParamMethodBinding.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/actionparam/ActionParamMethodBinding.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- ActionParamMethodBinding.java 18 Dec 2006 15:38:49 -0000 1.4
+++ ActionParamMethodBinding.java 13 Feb 2007 18:49:03 -0000 1.5
@@ -19,7 +19,6 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
-
package org.jboss.seam.actionparam;
import javax.faces.application.Application;
@@ -37,7 +36,8 @@
*
* @author Stan Silvert
*/
-public class ActionParamMethodBinding extends MethodBinding implements StateHolder {
+public class ActionParamMethodBinding extends MethodBinding implements StateHolder
+{
private String expWithParams;
private ActionParamBindingHelper helper;
@@ -70,7 +70,8 @@
}
@Override
- public Object invoke(FacesContext facesContext, Object[] object) throws EvaluationException, MethodNotFoundException {
+ public Object invoke(FacesContext facesContext, Object[] object) throws EvaluationException, MethodNotFoundException
+ {
return this.helper.invokeTheExpression(facesContext);
}
More information about the jboss-cvs-commits
mailing list