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

Gavin King gavin.king at jboss.com
Sat Sep 30 12:36:32 EDT 2006


  User: gavin   
  Date: 06/09/30 12:36:32

  Modified:    src/main/org/jboss/seam/core  Manager.java
  Log:
  fix lifecycle of view parameters
  
  Revision  Changes    Path
  1.87      +12 -14    jboss-seam/src/main/org/jboss/seam/core/Manager.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Manager.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Manager.java,v
  retrieving revision 1.86
  retrieving revision 1.87
  diff -u -b -r1.86 -r1.87
  --- Manager.java	29 Sep 2006 22:48:50 -0000	1.86
  +++ Manager.java	30 Sep 2006 16:36:32 -0000	1.87
  @@ -44,7 +44,7 @@
    *
    * @author Gavin King
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
  - * @version $Revision: 1.86 $
  + * @version $Revision: 1.87 $
    */
   @Scope(ScopeType.EVENT)
   @Name("org.jboss.seam.core.manager")
  @@ -75,7 +75,7 @@
      //Is the current conversation "long-running"?
      private boolean isLongRunningConversation;
      
  -   private boolean nonFacesRequest = true;
  +   private boolean updateModelValuesCalled;
   
      private boolean controllingRedirect;
      
  @@ -1008,18 +1008,6 @@
         }
      }
      
  -   @Deprecated
  -   public boolean isNonFacesRequest()
  -   {
  -      return nonFacesRequest;
  -   }
  -   
  -   @Deprecated
  -   public void setNonFacesRequest(boolean nonFacesRequest)
  -   {
  -      this.nonFacesRequest = nonFacesRequest;
  -   }
  -
      public String getConversationIdParameter()
      {
         return conversationIdParameter;
  @@ -1078,4 +1066,14 @@
         return conversationAlreadyStored;
      }
   
  +   public boolean isUpdateModelValuesCalled()
  +   {
  +      return updateModelValuesCalled;
  +   }
  +
  +   public void setUpdateModelValuesCalled(boolean updateModelValuesCalled)
  +   {
  +      this.updateModelValuesCalled = updateModelValuesCalled;
  +   }
  +
   }
  
  
  



More information about the jboss-cvs-commits mailing list