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

Gavin King gavin.king at jboss.com
Fri Oct 13 12:34:30 EDT 2006


  User: gavin   
  Date: 06/10/13 12:34:30

  Modified:    src/main/org/jboss/seam  Component.java
  Log:
  auto implementation of Mutable for JavaBean components
  
  Revision  Changes    Path
  1.191     +3 -1      jboss-seam/src/main/org/jboss/seam/Component.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Component.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/Component.java,v
  retrieving revision 1.190
  retrieving revision 1.191
  diff -u -b -r1.190 -r1.191
  --- Component.java	13 Oct 2006 04:04:48 -0000	1.190
  +++ Component.java	13 Oct 2006 16:34:30 -0000	1.191
  @@ -71,6 +71,7 @@
   import org.jboss.seam.core.Events;
   import org.jboss.seam.core.Expressions;
   import org.jboss.seam.core.Init;
  +import org.jboss.seam.core.Mutable;
   import org.jboss.seam.core.ResourceBundle;
   import org.jboss.seam.core.Expressions.MethodBinding;
   import org.jboss.seam.core.Expressions.ValueBinding;
  @@ -110,7 +111,7 @@
    *
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
    * @author Gavin King
  - * @version $Revision: 1.190 $
  + * @version $Revision: 1.191 $
    */
   @Scope(ScopeType.APPLICATION)
   public class Component
  @@ -1773,6 +1774,7 @@
         else
         {
            interfaces.add(HttpSessionActivationListener.class);
  +         interfaces.add(Mutable.class);
         }
         interfaces.add(Proxy.class);
         en.setInterfaces( interfaces.toArray( new Class[0] ) );
  
  
  



More information about the jboss-cvs-commits mailing list