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

Gavin King gavin.king at jboss.com
Sun Oct 1 12:56:54 EDT 2006


  User: gavin   
  Date: 06/10/01 12:56:54

  Modified:    src/main/org/jboss/seam  Component.java
  Log:
  @RaiseEvent
  
  Revision  Changes    Path
  1.170     +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.169
  retrieving revision 1.170
  diff -u -b -r1.169 -r1.170
  --- Component.java	30 Sep 2006 19:57:14 -0000	1.169
  +++ Component.java	1 Oct 2006 16:56:54 -0000	1.170
  @@ -82,6 +82,7 @@
   import org.jboss.seam.interceptors.ClientSideInterceptor;
   import org.jboss.seam.interceptors.ConversationInterceptor;
   import org.jboss.seam.interceptors.ConversationalInterceptor;
  +import org.jboss.seam.interceptors.EventInterceptor;
   import org.jboss.seam.interceptors.ExceptionInterceptor;
   import org.jboss.seam.interceptors.Interceptor;
   import org.jboss.seam.interceptors.JavaBeanInterceptor;
  @@ -105,7 +106,7 @@
    *
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
    * @author Gavin King
  - * @version $Revision: 1.169 $
  + * @version $Revision: 1.170 $
    */
   @Scope(ScopeType.APPLICATION)
   public class Component
  @@ -676,6 +677,7 @@
      {
         addInterceptor( new Interceptor( new ExceptionInterceptor(), this ) );
         addInterceptor( new Interceptor( new RemoveInterceptor(), this ) );
  +      addInterceptor( new Interceptor( new EventInterceptor(), this ) );
         addInterceptor( new Interceptor( new ConversationalInterceptor(), this ) );
         addInterceptor( new Interceptor( new BusinessProcessInterceptor(), this ) );
         addInterceptor( new Interceptor( new ConversationInterceptor(), this ) );
  
  
  



More information about the jboss-cvs-commits mailing list