summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Lee <crazybob@crazybob.org>2009-06-27 16:27:17 +0000
committerBob Lee <crazybob@crazybob.org>2009-06-27 16:27:17 +0000
commitdbfc52452b52170c1ce099a7781532ba76b99501 (patch)
treedb7596af2a2a78df1b4ce3120ff6d28a6b77e7eb
parentceee566081cc1b40c2084cf243ebf9d891a07c7d (diff)
downloadplatform_external_jsr330-dbfc52452b52170c1ce099a7781532ba76b99501.tar.gz
platform_external_jsr330-dbfc52452b52170c1ce099a7781532ba76b99501.tar.bz2
platform_external_jsr330-dbfc52452b52170c1ce099a7781532ba76b99501.zip
Qualified the single qualifier rule with 'in injector-independent classes'.
git-svn-id: https://atinject.googlecode.com/svn/trunk@10 3bc8319c-20ab-11de-9edc-3f40a397ab60
-rw-r--r--src/javax/inject/Inject.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/javax/inject/Inject.java b/src/javax/inject/Inject.java
index e8bdfb4..88a3266 100644
--- a/src/javax/inject/Inject.java
+++ b/src/javax/inject/Inject.java
@@ -97,9 +97,9 @@ import static java.lang.annotation.ElementType.FIELD;
*
* <p>A {@linkplain Qualifier qualifier} may annotate an injectable field
* or parameter and, combined with the type, identify the implementation to
- * inject. Qualifiers are optional and when used with {@code @Inject}, no more
- * than one qualifier should annotate a single field or parameter. The
- * qualifiers are bold in the following example:
+ * inject. Qualifiers are optional, and when used with {@code @Inject} in
+ * injector-independent classes, no more than one qualifier should annotate a
+ * single field or parameter. The qualifiers are bold in the following example:
*
* <pre>
* public class Car {