You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by ge...@apache.org on 2009/01/17 12:27:33 UTC

svn commit: r735275 - in /incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans: Specializes.java TypeLiteral.java manager/Manager.java

Author: gerdogdu
Date: Sat Jan 17 03:27:33 2009
New Revision: 735275

URL: http://svn.apache.org/viewvc?rev=735275&view=rev
Log:
Formatting the api source.

Modified:
    incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/Specializes.java
    incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/TypeLiteral.java
    incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/manager/Manager.java

Modified: incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/Specializes.java
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/Specializes.java?rev=735275&r1=735274&r2=735275&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/Specializes.java (original)
+++ incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/Specializes.java Sat Jan 17 03:27:33 2009
@@ -21,7 +21,7 @@
 import java.lang.annotation.Retention;
 import java.lang.annotation.Target;
 
-@Target({TYPE,METHOD})
+@Target( { TYPE, METHOD })
 @Retention(RUNTIME)
 @Documented
 public @interface Specializes {

Modified: incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/TypeLiteral.java
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/TypeLiteral.java?rev=735275&r1=735274&r2=735275&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/TypeLiteral.java (original)
+++ incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/TypeLiteral.java Sat Jan 17 03:27:33 2009
@@ -19,11 +19,13 @@
 import java.util.List;
 
 /**
- * *********************************************************************************************
- * This class and its method signatures is taken from the unpublished Web Beans
- * API related code from the <a
+ * *****************************************************************************
+ * **************** This class and its method signatures is taken from the
+ * unpublished Web Beans API related code from the <a
  * href="http://anonsvn.jboss.org/repos/webbeans/">Web Beans RI svn</a>
- * ********************************************************************************************
+ * *********
+ * *********************************************************************
+ * **************
  */
 public abstract class TypeLiteral<T>
 {

Modified: incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/manager/Manager.java
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/manager/Manager.java?rev=735275&r1=735274&r2=735275&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/manager/Manager.java (original)
+++ incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/manager/Manager.java Sat Jan 17 03:27:33 2009
@@ -35,19 +35,19 @@
  * </p>
  * <p>
  * <ul>
- * <li> Inspect the type of the injected point to find all web beans component
- * that has this API type. </li>
- * <li> From the candidates, it selects the all components that satisfies the
+ * <li>Inspect the type of the injected point to find all web beans component
+ * that has this API type.</li>
+ * <li>From the candidates, it selects the all components that satisfies the
  * binding types of the injected point. If the injected point annotation has
  * some member values, then it selects the web beans components with binding
  * type (with {@link NonBinding} annotated member) that has same member values
- * with the injected annoation value. </li>
- * <li> If there are some components that has exactly the same binding type with
+ * with the injected annoation value.</li>
+ * <li>If there are some components that has exactly the same binding type with
  * the injected point, container narrows the component set containing just those
- * components. </li>
- * <li> Examine the precedence type of the narrowed set of components and
- * selects the higher precedence of the components. Otherwise exception is
- * thrown by the container. </li>
+ * components.</li>
+ * <li>Examine the precedence type of the narrowed set of components and selects
+ * the higher precedence of the components. Otherwise exception is thrown by the
+ * container.</li>
  * </ul>
  * </p>
  * <p>
@@ -60,8 +60,7 @@
  * <li>Container selects the higher precedence from the set using the component
  * type precedence</li>
  * <li>If exactly one component is remained, the resolution results in that
- * component, otherwise</li>
- * exceptin is thrown by the container.
+ * component, otherwise</li> exceptin is thrown by the container.
  * </ul>
  * </p>
  *