[weld-commits] Weld SVN: r4381 - api/trunk/cdi/src/main/java/javax/enterprise/inject/spi.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Thu Oct 29 00:57:00 EDT 2009


Author: gavin.king at jboss.com
Date: 2009-10-29 00:57:00 -0400 (Thu, 29 Oct 2009)
New Revision: 4381

Modified:
   api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/ObserverMethod.java
Log:
minor

Modified: api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/ObserverMethod.java
===================================================================
--- api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/ObserverMethod.java	2009-10-29 04:54:40 UTC (rev 4380)
+++ api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/ObserverMethod.java	2009-10-29 04:57:00 UTC (rev 4381)
@@ -26,17 +26,16 @@
    public Class<X> getBeanClass();
 
    /**
-    * Obtains the {@linkplain Type type} of event being observed.
+    * Obtains the observed event {@linkplain Type type}.
     * 
-    * @return the event {@linkplain Type type}
+    * @return the observed event {@linkplain Type type}
     */
    public Type getObservedType();
 
    /**
-    * Obtains the set of {@linkplain javax.inject.Qualifier qualifiers} for the
-    * event being observed.
+    * Obtains the set of observed event {@linkplain javax.inject.Qualifier qualifiers}.
     * 
-    * @return the {@linkplain javax.inject.Qualifier qualifiers} for the event
+    * @return the observed event {@linkplain javax.inject.Qualifier qualifiers}
     */
    public Set<Annotation> getObservedQualifiers();
 
@@ -58,7 +57,7 @@
    /**
     * Calls the observer method passing the given event object.
     * 
-    * @param event The event object
+    * @param event the event object
     */
    public void notify(T event);
 }



More information about the weld-commits mailing list