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

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Sat Oct 24 19:00:54 EDT 2009


Author: gavin.king at jboss.com
Date: 2009-10-24 19:00:54 -0400 (Sat, 24 Oct 2009)
New Revision: 4271

Modified:
   api/trunk/cdi/src/main/java/javax/enterprise/inject/Instance.java
Log:
minor fixes

Modified: api/trunk/cdi/src/main/java/javax/enterprise/inject/Instance.java
===================================================================
--- api/trunk/cdi/src/main/java/javax/enterprise/inject/Instance.java	2009-10-24 22:56:44 UTC (rev 4270)
+++ api/trunk/cdi/src/main/java/javax/enterprise/inject/Instance.java	2009-10-24 23:00:54 UTC (rev 4271)
@@ -93,8 +93,8 @@
  * 
  * <pre>for (PaymentProcessor pp: anyPaymentProcessor) pp.test();</pre>
  * 
- * @see {@link javax.inject.Provider#get()}
- * @see {@link java.lang.Iterable#iterator()}
+ * @see javax.inject.Provider#get()
+ * @see java.lang.Iterable#iterator()
  * @see javax.enterprise.inject.AnnotationLiteral
  * @see javax.enterprise.inject.TypeLiteral
  * 
@@ -141,6 +141,10 @@
    public <U extends T> Instance<U> select(TypeLiteral<U> subtype, Annotation... qualifiers); 
    
    /**
+    * <p>Determines if there is no bean that matches the required type and 
+    * qualifiers and is eligible for injection into the class into which the parent 
+    * <tt>Instance</tt> was injected.</p>
+    * 
     * @return <tt>true</tt> if there is no bean that matches the required type and 
     * qualifiers and is eligible for injection into the class into which the parent 
     * <tt>Instance</tt> was injected, or <tt>false</tt> otherwise.
@@ -148,6 +152,10 @@
    public boolean isUnsatisfied(); 
    
    /**
+    * <p>Determines if there is more than one bean that matches the required type and 
+    * qualifiers and is eligible for injection into the class into which the parent 
+    * <tt>Instance</tt> was injected.</p>
+    * 
     * @return <tt>true</tt> if there is more than one bean that matches the required 
     * type and qualifiers and is eligible for injection into the class into which the 
     * parent <tt>Instance</tt> was injected, or <tt>false</tt> otherwise.



More information about the weld-commits mailing list