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

Gavin King gavin.king at jboss.com
Mon Jul 24 16:55:57 EDT 2006


  User: gavin   
  Date: 06/07/24 16:55:57

  Modified:    src/main/org/jboss/seam/core   ManagedEntity.java
                        ManagedHibernateEntity.java
  Log:
  javadoc
  
  Revision  Changes    Path
  1.4       +9 -0      jboss-seam/src/main/org/jboss/seam/core/ManagedEntity.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ManagedEntity.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/ManagedEntity.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- ManagedEntity.java	24 Jul 2006 20:52:50 -0000	1.3
  +++ ManagedEntity.java	24 Jul 2006 20:55:57 -0000	1.4
  @@ -9,6 +9,15 @@
   import org.jboss.seam.annotations.Intercept;
   import org.jboss.seam.annotations.Unwrap;
   
  +/**
  + * Manager component for an EJB 3.0 entity instance. Allows
  + * auto-fetching of contextual entities. The identifier
  + * is determined by evaluating an EL expression and then
  + * using JSF type conversion if necessary.
  + * 
  + * @author Gavin King
  + *
  + */
   @Intercept(NEVER)
   public class ManagedEntity
   {
  
  
  
  1.5       +9 -0      jboss-seam/src/main/org/jboss/seam/core/ManagedHibernateEntity.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ManagedHibernateEntity.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/ManagedHibernateEntity.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- ManagedHibernateEntity.java	24 Jul 2006 20:52:50 -0000	1.4
  +++ ManagedHibernateEntity.java	24 Jul 2006 20:55:57 -0000	1.5
  @@ -9,6 +9,15 @@
   import org.jboss.seam.annotations.Transactional;
   import org.jboss.seam.annotations.Unwrap;
   
  +/**
  + * Manager component for a Hibernate entity instance. Allows
  + * auto-fetching of contextual entities. The identifier
  + * is determined by evaluating an EL expression and then
  + * using JSF type conversion if necessary.
  + * 
  + * @author Gavin King
  + *
  + */
   public class ManagedHibernateEntity
   {
      private Session session;
  
  
  



More information about the jboss-cvs-commits mailing list