[weld-commits] Weld SVN: r4301 - in api/trunk/cdi/src/main/java/javax/enterprise: inject and 1 other directory.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Sun Oct 25 11:18:41 EDT 2009


Author: gavin.king at jboss.com
Date: 2009-10-25 11:18:41 -0400 (Sun, 25 Oct 2009)
New Revision: 4301

Modified:
   api/trunk/cdi/src/main/java/javax/enterprise/event/package-info.java
   api/trunk/cdi/src/main/java/javax/enterprise/inject/package-info.java
Log:
links down

Modified: api/trunk/cdi/src/main/java/javax/enterprise/event/package-info.java
===================================================================
--- api/trunk/cdi/src/main/java/javax/enterprise/event/package-info.java	2009-10-25 15:17:19 UTC (rev 4300)
+++ api/trunk/cdi/src/main/java/javax/enterprise/event/package-info.java	2009-10-25 15:18:41 UTC (rev 4301)
@@ -39,6 +39,9 @@
  * specific set of qualifiers. Any Java type may be observed by an 
  * observer method.</p>
  * 
+ * <p>An observer method is a method of a bean class with a parameter
+ * annotated {@link javax.enterprise.event.Observes &#064;Observes}.</p>
+ * 
  * <p>An observer method will be notified of an event if:</p> 
  * 
  * <ul>

Modified: api/trunk/cdi/src/main/java/javax/enterprise/inject/package-info.java
===================================================================
--- api/trunk/cdi/src/main/java/javax/enterprise/inject/package-info.java	2009-10-25 15:17:19 UTC (rev 4300)
+++ api/trunk/cdi/src/main/java/javax/enterprise/inject/package-info.java	2009-10-25 15:18:41 UTC (rev 4301)
@@ -63,6 +63,9 @@
  * &#064;Inject &#064;Synchronous PaymentProcessor paymentProcessor; 
  * </pre>
  * 
+ * <p>A qualifier type is a Java annotation annotated 
+ * {@link javax.inject.Qualifier &#064;Qualifier}.</p>
+ * 
  * <p>The qualifiers of a bean are declared by annotating the bean class 
  * or producer method or field with the qualifier types.</p>
  * 
@@ -88,6 +91,9 @@
  * scope of a bean determines the lifecycle of its instances, and which 
  * instances of the bean are visible to instances of other beans.</p>
  * 
+ * <p>A scope type is a Java annotation annotated 
+ * {@link javax.inject.Scope &#064;Scope}.</p>
+ * 
  * <p>The scope of a bean is defined by annotating the bean class or producer 
  * method or field with a scope type or stereotype that declares a default
  * scope type.</p>
@@ -124,6 +130,9 @@
  * managed bean that is not itself an interceptor or decorator or with any 
  * EJB session or message-driven bean.</p>
  * 
+ * <p>An interceptor binding type is a Java annotation annotated 
+ * {@link javax.interceptor.InterceptorBinding &#064;InterceptorBinding}.</p>
+ * 
  * <p>An interceptor binding may be declared by annotating the bean class, 
  * or a method of the bean class, with an interceptor binding type.</p>
  * 
@@ -232,6 +241,9 @@
  * performed by the bean constructor.</li>
  * </ul>
  * 
+ * <p>A producer method or field is a method or field of a bean class annotated
+ * {@link javax.enterprise..inject.Produces &#064;Produces}.</p>
+ * 
  * <h4>Resources</h4>
  * 
  * <p>A resource is a bean that represents a reference to a resource, persistence 



More information about the weld-commits mailing list