[weld-commits] Weld SVN: r4689 - api/trunk/cdi/src/main/java/javax/enterprise/inject/spi.
weld-commits at lists.jboss.org
weld-commits at lists.jboss.org
Wed Nov 4 17:07:25 EST 2009
Author: gavin.king at jboss.com
Date: 2009-11-04 17:07:24 -0500 (Wed, 04 Nov 2009)
New Revision: 4689
Modified:
api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/BeanManager.java
Log:
define enabled where
Modified: api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/BeanManager.java
===================================================================
--- api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/BeanManager.java 2009-11-04 22:00:32 UTC (rev 4688)
+++ api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/BeanManager.java 2009-11-04 22:07:24 UTC (rev 4689)
@@ -194,8 +194,11 @@
public <T> Set<ObserverMethod<? super T>> resolveObserverMethods(T event, Annotation... qualifiers);
/**
- * Return an ordered list of enabled {@linkplain Decorator decorators} for a set
- * of bean types and a set of qualifiers.
+ * Return an ordered list of {@linkplain Decorator decorators} for a set of
+ * bean types and a set of qualifiers that are enabled in the module or
+ * library containing the class into which the <tt>BeanManager</tt> was
+ * injected or the Java EE component from whose JNDI environment namespace
+ * the <tt>BeanManager</tt> was obtained.
*
* @param types the set of bean types of the decorated bean
* @param qualifiers the qualifiers declared by the decorated bean
@@ -209,8 +212,11 @@
public List<Decorator<?>> resolveDecorators(Set<Type> types, Annotation... qualifiers);
/**
- * Return an ordered list of enabled {@linkplain Interceptor interceptors} for a set
- * of interceptor bindings and the type of interception.
+ * Return an ordered list of enabled {@linkplain Interceptor interceptors} for
+ * a set of interceptor bindings and a type of interception that are enabled
+ * in the module or library containing the class into which the <tt>BeanManager</tt>
+ * was injected or the Java EE component from whose JNDI environment namespace
+ * the <tt>BeanManager</tt> was obtained.
*
* @param type the type of the interception
* @param interceptorBindings the interceptor bindings
More information about the weld-commits
mailing list