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

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Tue Aug 10 16:15:43 EDT 2010


Author: pete.muir at jboss.org
Date: 2010-08-10 16:15:42 -0400 (Tue, 10 Aug 2010)
New Revision: 6948

Modified:
   cdi-api/trunk/trunk/src/main/java/javax/enterprise/inject/spi/ProcessProducerField.java
   cdi-api/trunk/trunk/src/main/java/javax/enterprise/inject/spi/ProcessProducerMethod.java
Log:
WELD-586

Modified: cdi-api/trunk/trunk/src/main/java/javax/enterprise/inject/spi/ProcessProducerField.java
===================================================================
--- cdi-api/trunk/trunk/src/main/java/javax/enterprise/inject/spi/ProcessProducerField.java	2010-08-10 12:24:39 UTC (rev 6947)
+++ cdi-api/trunk/trunk/src/main/java/javax/enterprise/inject/spi/ProcessProducerField.java	2010-08-10 20:15:42 UTC (rev 6948)
@@ -28,8 +28,8 @@
  * </p>
  * 
  * @author David Allen
- * @param <T> The class of the producer field
- * @param <X> The class of the bean representing the producer field
+ * @param <T> The class of the bean declaring the producer field
+ * @param <X> The type of the producer field
  */
 public interface ProcessProducerField<T, X> extends ProcessBean<X>
 {

Modified: cdi-api/trunk/trunk/src/main/java/javax/enterprise/inject/spi/ProcessProducerMethod.java
===================================================================
--- cdi-api/trunk/trunk/src/main/java/javax/enterprise/inject/spi/ProcessProducerMethod.java	2010-08-10 12:24:39 UTC (rev 6947)
+++ cdi-api/trunk/trunk/src/main/java/javax/enterprise/inject/spi/ProcessProducerMethod.java	2010-08-10 20:15:42 UTC (rev 6948)
@@ -27,8 +27,8 @@
  * </p>
  * 
  * @author David Allen
- * @param <T> The class of the return type of the producer method
- * @param <X> The class of the bean representing the producer method
+ * @param <T> The class of the bean declaring the producer method
+ * @param <X> The return type of the producer method
  */
 public interface ProcessProducerMethod<T, X> extends ProcessBean<X>
 {



More information about the weld-commits mailing list