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

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


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

  Modified:    src/main/org/jboss/seam/contexts   
                        ClientConversationContext.java PageContext.java
                        ServerConversationContext.java
  Log:
  many minor
  
  Revision  Changes    Path
  1.8       +2 -1      jboss-seam/src/main/org/jboss/seam/contexts/ClientConversationContext.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ClientConversationContext.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/contexts/ClientConversationContext.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- ClientConversationContext.java	11 Oct 2006 04:42:12 -0000	1.7
  +++ ClientConversationContext.java	25 Oct 2006 15:14:35 -0000	1.8
  @@ -22,7 +22,7 @@
    * 
    * @author Gavin King
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
  - * @version $Revision: 1.7 $
  + * @version $Revision: 1.8 $
    */
   public class ClientConversationContext implements Context {
   
  @@ -67,6 +67,7 @@
         return map.keySet().toArray( new String[]{} );
      }
      
  +   @Override
      public String toString()
      {
         return "ClientConversationContext";
  
  
  
  1.10      +3 -2      jboss-seam/src/main/org/jboss/seam/contexts/PageContext.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PageContext.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/contexts/PageContext.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- PageContext.java	19 Oct 2006 22:50:44 -0000	1.9
  +++ PageContext.java	25 Oct 2006 15:14:35 -0000	1.10
  @@ -31,7 +31,7 @@
    * returns values from the page that was the source of the request.
    * 
    * @author Gavin King
  - * @version $Revision: 1.9 $
  + * @version $Revision: 1.10 $
    */
   public class PageContext implements Context {
   
  @@ -40,7 +40,7 @@
      
      public PageContext()
      {
  -      previousPageMap = (Map<String, Object>) getAttributeMap();
  +      previousPageMap = getAttributeMap();
         nextPageMap = new HashMap<String, Object>();
      }
   
  @@ -99,6 +99,7 @@
         return getCurrentReadableMap().keySet().toArray( new String[]{} );
      }
      
  +   @Override
      public String toString()
      {
         return "PageContext";
  
  
  
  1.14      +2 -1      jboss-seam/src/main/org/jboss/seam/contexts/ServerConversationContext.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ServerConversationContext.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/contexts/ServerConversationContext.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -b -r1.13 -r1.14
  --- ServerConversationContext.java	15 Oct 2006 21:51:59 -0000	1.13
  +++ ServerConversationContext.java	25 Oct 2006 15:14:35 -0000	1.14
  @@ -25,7 +25,7 @@
    * 
    * @author Gavin King
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
  - * @version $Revision: 1.13 $
  + * @version $Revision: 1.14 $
    */
   public class ServerConversationContext implements Context {
   
  @@ -208,6 +208,7 @@
         }
      }
   
  +   @Override
      public String toString()
      {
         return "ConversationContext(" + getId() + ")";
  
  
  



More information about the jboss-cvs-commits mailing list