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

Gavin King gavin.king at jboss.com
Fri Jun 22 05:28:51 EDT 2007


  User: gavin   
  Date: 07/06/22 05:28:51

  Modified:    src/main/org/jboss/seam/core     ConversationList.java
                        ConversationPropagation.java PojoCache.java
                        Renderer.java
  Log:
  javadoc
  
  Revision  Changes    Path
  1.18      +2 -0      jboss-seam/src/main/org/jboss/seam/core/ConversationList.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConversationList.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/ConversationList.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -b -r1.17 -r1.18
  --- ConversationList.java	20 Jun 2007 22:11:30 -0000	1.17
  +++ ConversationList.java	22 Jun 2007 09:28:51 -0000	1.18
  @@ -19,6 +19,8 @@
   import org.jboss.seam.web.Session;
   
   /**
  + * Support for the conversation list
  + * 
    * @author Gavin King
    */
   @Scope(ScopeType.PAGE)
  
  
  
  1.5       +7 -0      jboss-seam/src/main/org/jboss/seam/core/ConversationPropagation.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConversationPropagation.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/ConversationPropagation.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- ConversationPropagation.java	20 Jun 2007 17:45:55 -0000	1.4
  +++ ConversationPropagation.java	22 Jun 2007 09:28:51 -0000	1.5
  @@ -14,6 +14,13 @@
   import org.jboss.seam.navigation.Page;
   import org.jboss.seam.navigation.Pages;
   
  +/**
  + * Overrideable component for extracting the conversation id
  + * from a request.
  + * 
  + * @author Gavin King
  + *
  + */
   @Name("org.jboss.seam.core.conversationPropagation")
   @Scope(ScopeType.EVENT)
   @BypassInterceptors
  
  
  
  1.11      +7 -1      jboss-seam/src/main/org/jboss/seam/core/PojoCache.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PojoCache.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/PojoCache.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- PojoCache.java	20 Jun 2007 17:45:55 -0000	1.10
  +++ PojoCache.java	22 Jun 2007 09:28:51 -0000	1.11
  @@ -1,4 +1,4 @@
  -//$Id: PojoCache.java,v 1.10 2007/06/20 17:45:55 gavin Exp $
  +//$Id: PojoCache.java,v 1.11 2007/06/22 09:28:51 gavin Exp $
   package org.jboss.seam.core;
   
   import static org.jboss.seam.annotations.Install.BUILT_IN;
  @@ -17,6 +17,12 @@
   import org.jboss.seam.log.LogProvider;
   import org.jboss.seam.log.Logging;
   
  +/**
  + * Integration with JBoss Cache
  + * 
  + * @author Gavin King
  + *
  + */
   @Name("org.jboss.seam.core.pojoCache")
   @Scope(ScopeType.APPLICATION)
   @BypassInterceptors
  
  
  
  1.5       +6 -0      jboss-seam/src/main/org/jboss/seam/core/Renderer.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Renderer.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Renderer.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- Renderer.java	26 Feb 2007 20:31:10 -0000	1.4
  +++ Renderer.java	22 Jun 2007 09:28:51 -0000	1.5
  @@ -4,6 +4,12 @@
   import org.jboss.seam.annotations.Install;
   import org.jboss.seam.annotations.Name;
   
  +/**
  + * A component for direct rendering of
  + * templates. Especially useful with
  + * Seam Mail. 
  + *
  + */
   @Name("org.jboss.seam.core.renderer")
   @Install(false)
   public abstract class Renderer
  
  
  



More information about the jboss-cvs-commits mailing list