You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by ge...@apache.org on 2009/01/17 10:46:57 UTC

svn commit: r735264 - /incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/Specializes.java

Author: gerdogdu
Date: Sat Jan 17 01:46:56 2009
New Revision: 735264

URL: http://svn.apache.org/viewvc?rev=735264&view=rev
Log:
ElementType.METHOD is added.

Modified:
    incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/Specializes.java

Modified: incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/Specializes.java
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/Specializes.java?rev=735264&r1=735263&r2=735264&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/Specializes.java (original)
+++ incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/Specializes.java Sat Jan 17 01:46:56 2009
@@ -14,13 +14,14 @@
 package javax.webbeans;
 
 import static java.lang.annotation.ElementType.TYPE;
+import static java.lang.annotation.ElementType.METHOD;
 import static java.lang.annotation.RetentionPolicy.RUNTIME;
 
 import java.lang.annotation.Documented;
 import java.lang.annotation.Retention;
 import java.lang.annotation.Target;
 
-@Target(TYPE)
+@Target({TYPE,METHOD})
 @Retention(RUNTIME)
 @Documented
 public @interface Specializes {