Added note about injecting non-public members.

git-svn-id: https://atinject.googlecode.com/svn/trunk@15 3bc8319c-20ab-11de-9edc-3f40a397ab60
diff --git a/src/javax/inject/Inject.java b/src/javax/inject/Inject.java
index 7880369..dd696a9 100644
--- a/src/javax/inject/Inject.java
+++ b/src/javax/inject/Inject.java
@@ -107,7 +107,11 @@
  * that overrides a method annotated with {@code @Inject} will not be
  * injected.
  *
- * <p>Injection of members annotated with {@code @Inject} is required.
+ * <p>Injection of members annotated with {@code @Inject} is required. While an
+ * injectable member may use any accessibility modifier (including
+ * <tt>private</tt>), platform or injector limitations (like security
+ * restrictions or lack of reflection support) might prevent injection
+ * of non-public members.
  *
  * <h3>Qualifiers</h3>
  *