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

Gavin King gavin.king at jboss.com
Wed Oct 11 21:37:28 EDT 2006


  User: gavin   
  Date: 06/10/11 21:37:28

  Modified:    src/main/org/jboss/seam/actionparam  
                        ActionParamMethodBinding.java
                        ActionParamValueBinding.java
  Log:
  support for JSF 1.2 RI
  
  Revision  Changes    Path
  1.3       +2 -2      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.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ActionParamMethodBinding.java	30 Sep 2006 01:36:14 -0000	1.2
  +++ ActionParamMethodBinding.java	12 Oct 2006 01:37:28 -0000	1.3
  @@ -29,7 +29,7 @@
   import javax.faces.el.MethodBinding;
   import javax.faces.el.MethodNotFoundException;
   
  -import org.jboss.seam.jsf.SeamApplication;
  +import org.jboss.seam.jsf.SeamApplication11;
   
   /**
    * This class assumes that the entire expression is not a string literal.  If
  @@ -48,7 +48,7 @@
       public ActionParamMethodBinding()
       {
           // constructor needed for StateHolder
  -        application = ( (SeamApplication) FacesContext.getCurrentInstance().getApplication() ).getDelegate();
  +        application = ( (SeamApplication11) FacesContext.getCurrentInstance().getApplication() ).getDelegate();
       }
       
       public ActionParamMethodBinding(Application application, String expWithParams) {
  
  
  
  1.3       +2 -2      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.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ActionParamValueBinding.java	30 Sep 2006 01:36:14 -0000	1.2
  +++ ActionParamValueBinding.java	12 Oct 2006 01:37:28 -0000	1.3
  @@ -29,7 +29,7 @@
   import javax.faces.el.PropertyNotFoundException;
   import javax.faces.el.ValueBinding;
   
  -import org.jboss.seam.jsf.SeamApplication;
  +import org.jboss.seam.jsf.SeamApplication11;
   
   /**
    * This is a sort of bastardized ValueBinding that takes an action expression.
  @@ -52,7 +52,7 @@
       public ActionParamValueBinding()
       {
           // needed for StateHolder
  -        application = ( (SeamApplication) FacesContext.getCurrentInstance().getApplication() ).getDelegate();
  +        application = ( (SeamApplication11) FacesContext.getCurrentInstance().getApplication() ).getDelegate();
       }
       
       public ActionParamValueBinding(Application application, String expression)
  
  
  



More information about the jboss-cvs-commits mailing list