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

Gavin King gavin.king at jboss.com
Wed Aug 2 13:50:27 EDT 2006


  User: gavin   
  Date: 06/08/02 13:50:27

  Modified:    src/main/org/jboss/seam/annotations   DataBinderClass.java
                        DataSelectorClass.java
  Log:
  fix JBSEAM-325, sfsb interceptor passivation
  
  Revision  Changes    Path
  1.3       +2 -2      jboss-seam/src/main/org/jboss/seam/annotations/DataBinderClass.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: DataBinderClass.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/annotations/DataBinderClass.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- DataBinderClass.java	22 May 2006 03:56:09 -0000	1.2
  +++ DataBinderClass.java	2 Aug 2006 17:50:27 -0000	1.3
  @@ -1,5 +1,5 @@
   package org.jboss.seam.annotations;
  -import static java.lang.annotation.ElementType.TYPE;
  +import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
   import static java.lang.annotation.RetentionPolicy.RUNTIME;
   
   import java.lang.annotation.Documented;
  @@ -17,7 +17,7 @@
    * @see org.jboss.seam.databinding.DataBinder
    * @author Gavin King
    */
  - at Target(TYPE)
  + at Target(ANNOTATION_TYPE)
   @Retention(RUNTIME)
   @Documented
   public @interface DataBinderClass
  
  
  
  1.3       +2 -2      jboss-seam/src/main/org/jboss/seam/annotations/DataSelectorClass.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: DataSelectorClass.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/annotations/DataSelectorClass.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- DataSelectorClass.java	22 May 2006 03:56:09 -0000	1.2
  +++ DataSelectorClass.java	2 Aug 2006 17:50:27 -0000	1.3
  @@ -1,6 +1,6 @@
   package org.jboss.seam.annotations;
   
  -import static java.lang.annotation.ElementType.TYPE;
  +import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
   import static java.lang.annotation.RetentionPolicy.RUNTIME;
   
   import java.lang.annotation.Documented;
  @@ -18,7 +18,7 @@
    * @see org.jboss.seam.databinding.DataSelector
    * @author Gavin King
    */
  - at Target(TYPE)
  + at Target(ANNOTATION_TYPE)
   @Retention(RUNTIME)
   @Documented
   public @interface DataSelectorClass
  
  
  



More information about the jboss-cvs-commits mailing list