[webbeans-commits] Webbeans SVN: r1493 - in tck/trunk/impl/src/main/java/org/jboss/jsr299/tck: integration/lookup/non/contextual and 2 other directories.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Wed Feb 11 21:25:00 EST 2009


Author: shane.bryzak at jboss.com
Date: 2009-02-11 21:25:00 -0500 (Wed, 11 Feb 2009)
New Revision: 1493

Modified:
   tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/integration/implementation/enterprise/EnterpriseBeanLifecycleTest.java
   tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/integration/lookup/non/contextual/NonContextualInjectionTest.java
   tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/unit/event/EventTest.java
   tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/unit/lookup/byname/ResolutionByNameTest.java
Log:
removed weird characters

Modified: tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/integration/implementation/enterprise/EnterpriseBeanLifecycleTest.java
===================================================================
--- tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/integration/implementation/enterprise/EnterpriseBeanLifecycleTest.java	2009-02-12 00:59:38 UTC (rev 1492)
+++ tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/integration/implementation/enterprise/EnterpriseBeanLifecycleTest.java	2009-02-12 02:25:00 UTC (rev 1493)
@@ -24,7 +24,7 @@
    /**
     * When the create() method of a Bean object that represents a stateful
     * session bean that is called, the container creates and returns a session
-    * bean proxy, as defined in Section 3.3.9, “Session bean proxies”.
+    * bean proxy, as defined in Section 3.3.9, "Session bean proxies".
     */
    @Test(groups = { "enterpriseBeans", "lifecycle", "integration", "stub" })
    @SpecAssertion(section = "6.5", id = "unknown")
@@ -88,8 +88,8 @@
    /**
     * Next, if the EJB instance is a contextual instance of a bean, the
     * container initializes the values of any fields with initial values
-    * specified in XML, as defined in Section 9.5.5, “Field initial value
-    * declarations”.
+    * specified in XML, as defined in Section 9.5.5, "Field initial value
+    * declarations".
     */
    @Test(groups = { "enterpriseBeans", "lifecycle", "integration", "stub" })
    @SpecAssertion(section = "6.11", id = "unknown")
@@ -112,8 +112,8 @@
 
    /**
     * Finally, the container builds the interceptor and decorator stacks for the
-    * instance as defined in Section A.3.10, “Interceptor stack creation” and
-    * Section A.5.8, “Decorator stack creation” and binds them to the instance.
+    * instance as defined in Section A.3.10, "Interceptor stack creation" and
+    * Section A.5.8, "Decorator stack creation" and binds them to the instance.
     */
    @Test(groups = { "enterpriseBeans", "lifecycle", "interceptors", "stub" })
    @SpecAssertion(section = "6.11", id = "unknown")
@@ -124,8 +124,8 @@
 
    /**
     * Finally, the container builds the interceptor and decorator stacks for the
-    * instance as defined in Section A.3.10, “Interceptor stack creation” and
-    * Section A.5.8, “Decorator stack creation” and binds them to the instance.
+    * instance as defined in Section A.3.10, "Interceptor stack creation" and
+    * Section A.5.8, "Decorator stack creation" and binds them to the instance.
     */
    @Test(groups = { "enterpriseBeans", "lifecycle", "decorators", "stub" })
    @SpecAssertion(section = "6.11", id = "unknown")

Modified: tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/integration/lookup/non/contextual/NonContextualInjectionTest.java
===================================================================
--- tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/integration/lookup/non/contextual/NonContextualInjectionTest.java	2009-02-12 00:59:38 UTC (rev 1492)
+++ tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/integration/lookup/non/contextual/NonContextualInjectionTest.java	2009-02-12 02:25:00 UTC (rev 1493)
@@ -17,7 +17,7 @@
     * creation, the container must treat non-contextual instances of session
     * beans as instances of the most specialized bean that specializes the bean
     * with binding @New and de- ployment type @Standard defined in Section
-    * 3.3.6, “Session beans with the @New binding”.
+    * 3.3.6, "Session beans with the @New binding".
     */
    @Test(groups = { "stub", "integration" })
    @SpecAssertion(section = "5.12.1", id = "unknown")

Modified: tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/unit/event/EventTest.java
===================================================================
--- tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/unit/event/EventTest.java	2009-02-12 00:59:38 UTC (rev 1492)
+++ tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/unit/event/EventTest.java	2009-02-12 02:25:00 UTC (rev 1493)
@@ -169,7 +169,7 @@
 
    /**
     * An event binding type is just an ordinary binding type as specified in
-    * Section 2.3.2, “Defining new binding types” with the exception that it may
+    * Section 2.3.2, "Defining new binding types" with the exception that it may
     * be declared @Target({FIELD, PARAMETER}). More formally, an event binding
     * type is a Java annotation defined as @Target({FIELD, PARAMETER}) or
     * 
@@ -560,8 +560,8 @@
    /**
     * In addition to the event parameter, observer methods may declare
     * additional parameters, which may declare bindings. The container calls the
-    * method Manager.getInstanceToInject() defined in Section 5.7.1, “Resolving
-    * dependencies” to determine a value for each parameter of an observer
+    * method Manager.getInstanceToInject() defined in Section 5.7.1, "Resolving
+    * dependencies" to determine a value for each parameter of an observer
     * method and calls the observer method with those parameter values.
     * 
     * To invoke an observer method, the container must pass the event object to

Modified: tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/unit/lookup/byname/ResolutionByNameTest.java
===================================================================
--- tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/unit/lookup/byname/ResolutionByNameTest.java	2009-02-12 00:59:38 UTC (rev 1492)
+++ tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/unit/lookup/byname/ResolutionByNameTest.java	2009-02-12 02:25:00 UTC (rev 1493)
@@ -60,11 +60,11 @@
     * The following algorithm must be used by the container when resolving a
     * bean by name:
     * 
-    * • The container identifies the set of matching enabled beans which have
+    * The container identifies the set of matching enabled beans which have
     * the given name.
     * 
-    * • Next, the container examines the deployment types of the matching beans,
-    * as defined in Section 2.5.7, “Deployment type precedence”, and returns the
+    * Next, the container examines the deployment types of the matching beans,
+    * as defined in Section 2.5.7, "Deployment type precedence", and returns the
     * set of beans with the highest precedence deployment type that occurs in
     * the set. If there are no matching beans, an empty set is returned.
     * @throws Exception 




More information about the weld-commits mailing list