[jboss-cvs] jboss-seam/src/main/org/jboss/seam/actionparam ...

Gavin King gavin.king at jboss.com
Wed Oct 25 11:14:34 EDT 2006


  User: gavin   
  Date: 06/10/25 11:14:34

  Modified:    src/main/org/jboss/seam/actionparam  
                        ActionParamBindingHelper.java
                        ActionParamValueBinding.java
  Log:
  many minor
  
  Revision  Changes    Path
  1.2       +2 -1      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.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ActionParamBindingHelper.java	9 Aug 2006 20:30:08 -0000	1.1
  +++ ActionParamBindingHelper.java	25 Oct 2006 15:14:34 -0000	1.2
  @@ -23,6 +23,7 @@
   package org.jboss.seam.actionparam;
   
   import java.lang.reflect.Method;
  +
   import javax.faces.application.Application;
   import javax.faces.context.FacesContext;
   import javax.faces.el.EvaluationException;
  @@ -68,7 +69,7 @@
           {
               String param = params[i].trim();
               
  -            if (parser.isQuotedString(param)) 
  +            if ( MethodExpressionParser.isQuotedString(param) ) 
               {
                   // strip quotes
                   results[i] = param.substring(1, param.length() - 1);
  
  
  
  1.4       +5 -0      jboss-seam/src/main/org/jboss/seam/actionparam/ActionParamValueBinding.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ActionParamValueBinding.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/actionparam/ActionParamValueBinding.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- ActionParamValueBinding.java	12 Oct 2006 01:37:28 -0000	1.3
  +++ ActionParamValueBinding.java	25 Oct 2006 15:14:34 -0000	1.4
  @@ -68,26 +68,31 @@
           this.binding = application.createValueBinding( parser.getCombinedExpression() );
       }
   
  +    @Override
       public void setValue(FacesContext facesContext, Object object) throws EvaluationException, PropertyNotFoundException 
       {
           this.binding.setValue(facesContext, object);
       }
   
  +    @Override
       public boolean isReadOnly(FacesContext facesContext) throws EvaluationException, PropertyNotFoundException 
       {
           return this.binding.isReadOnly(facesContext);
       }
   
  +    @Override
       public Object getValue(FacesContext facesContext) throws EvaluationException, PropertyNotFoundException 
       {
           return this.binding.getValue(facesContext);
       }
   
  +    @Override
       public Class getType(FacesContext facesContext) throws EvaluationException, PropertyNotFoundException 
       {
           return this.binding.getType(facesContext);
       }
   
  +    @Override
       public String getExpressionString() 
       {
           return this.expression;
  
  
  



More information about the jboss-cvs-commits mailing list