[webbeans-commits] Webbeans SVN: r1261 - ri/trunk/webbeans-api/src/main/java/javax/context.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Wed Jan 28 09:08:40 EST 2009


Author: pete.muir at jboss.org
Date: 2009-01-28 09:08:40 -0500 (Wed, 28 Jan 2009)
New Revision: 1261

Modified:
   ri/trunk/webbeans-api/src/main/java/javax/context/Contextual.java
Log:
ws

Modified: ri/trunk/webbeans-api/src/main/java/javax/context/Contextual.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/context/Contextual.java	2009-01-28 12:32:45 UTC (rev 1260)
+++ ri/trunk/webbeans-api/src/main/java/javax/context/Contextual.java	2009-01-28 14:08:40 UTC (rev 1261)
@@ -20,8 +20,8 @@
 import javax.inject.CreationException;
 
 /**
- * The contract between a context and a contextual type
- * This interface should not be implemented directly by the application.
+ * The contract between a context and a contextual type This interface should
+ * not be implemented directly by the application.
  * 
  * @author Nicklas Karlsson
  * @author Pete Muir
@@ -31,17 +31,20 @@
    /**
     * Create a new instance of the contextual type
     * 
-    * @param creationalContext the creational context in which incompletely
-    *                          initialized contexts may be placed
+    * @param creationalContext
+    *           the creational context in which incompletely initialized
+    *           contexts may be placed
     * @return the contextual instance
-    * @throws CreationException if a checked exception occurs whilst creating
-    *                           the instance
+    * @throws CreationException
+    *            if a checked exception occurs whilst creating the instance
     */
    public T create(CreationalContext<T> creationalContext);
-
+   
    /**
     * Destroys an instance of the contexual type
-    * @param instance the insance to destroy
+    * 
+    * @param instance
+    *           the insance to destroy
     */
    public void destroy(T instance);
 }




More information about the weld-commits mailing list