Author: gavin.king(a)jboss.com
Date: 2009-10-29 00:54:40 -0400 (Thu, 29 Oct 2009)
New Revision: 4380
Modified:
api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/Decorator.java
api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/Interceptor.java
api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/ObserverMethod.java
Log:
hrm, roll back
Modified: api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/Decorator.java
===================================================================
--- api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/Decorator.java 2009-10-29
04:48:47 UTC (rev 4379)
+++ api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/Decorator.java 2009-10-29
04:54:40 UTC (rev 4380)
@@ -33,24 +33,24 @@
{
/**
- * <p>Get the delegate type</p>
+ * <p>Obtains the delegate {@linkplain Type type}.</p>
*
- * @return the delegate type
+ * @return the delegate {@linkplain Type type}
*/
public Type getDelegateType();
/**
- * <p>Get the {@linkplain javax.inject.Qualifier qualifiers} of the delegate
+ * <p>Obtains the {@linkplain javax.inject.Qualifier qualifiers} of the
delegate
* injection point.</p>
*
- * @return the delegate qualifiers
+ * @return the delegate {@linkplain javax.inject.Qualifier qualifiers}
*/
public Set<Annotation> getDelegateQualifiers();
/**
- * <p>Get the decorated types.</p>
+ * <p>Obtains the decorated {@linkplain Type types}.</p>
*
- * @return the set of decorated types
+ * @return the set of decorated {@linkplain Type types}
*/
public Set<Type> getDecoratedTypes();
Modified: api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/Interceptor.java
===================================================================
--- api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/Interceptor.java 2009-10-29
04:48:47 UTC (rev 4379)
+++ api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/Interceptor.java 2009-10-29
04:54:40 UTC (rev 4380)
@@ -35,9 +35,10 @@
{
/**
- * <p>Get the interceptor bindings of the interceptor.</p>
+ * <p>Obtains the {@linkplain javax.interceptor.InterceptorBinding interceptor
bindings}
+ * of the interceptor.</p>
*
- * @return the set of interceptor bindings
+ * @return the set of {@linkplain javax.interceptor.InterceptorBinding interceptor
bindings}
*/
public Set<Annotation> getInterceptorBindingTypes();
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:48:47 UTC (rev 4379)
+++ api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/ObserverMethod.java 2009-10-29
04:54:40 UTC (rev 4380)
@@ -8,14 +8,13 @@
import javax.enterprise.event.TransactionPhase;
/**
- * <p>
- * This interface defines everything the container needs to know about an
- * observer method.
- * </p>
+ * <p>Represents an observer method of an enabled bean. Defines
+ * everything the container needs to know about an observer method.</p>
*
+ * @author Gavin King
* @author David Allen
- * @param <X> the type of bean with the observer method
- * @param <T> the type of event
+ * @param <X> the type of the bean with the observer method
+ * @param <T> the event type
*/
public interface ObserverMethod<X, T>
{
Show replies by date