You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2010/02/23 06:01:14 UTC

svn commit: r915183 - /openejb/trunk/openejb3/container/openejb-junit/src/main/java/org/apache/openejb/junit/OpenEjbRunner.java

Author: dblevins
Date: Tue Feb 23 05:01:14 2010
New Revision: 915183

URL: http://svn.apache.org/viewvc?rev=915183&view=rev
Log:
Fixed javadoc

Modified:
    openejb/trunk/openejb3/container/openejb-junit/src/main/java/org/apache/openejb/junit/OpenEjbRunner.java

Modified: openejb/trunk/openejb3/container/openejb-junit/src/main/java/org/apache/openejb/junit/OpenEjbRunner.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-junit/src/main/java/org/apache/openejb/junit/OpenEjbRunner.java?rev=915183&r1=915182&r2=915183&view=diff
==============================================================================
--- openejb/trunk/openejb3/container/openejb-junit/src/main/java/org/apache/openejb/junit/OpenEjbRunner.java (original)
+++ openejb/trunk/openejb3/container/openejb-junit/src/main/java/org/apache/openejb/junit/OpenEjbRunner.java Tue Feb 23 05:01:14 2010
@@ -31,8 +31,8 @@
 import java.util.Arrays;
 
 /**
- * To make your own runner, extend this class replacing {@link #newTestContext(java.lang.Class) }
- * and {@link #newTestContext(java.lang.Class, java.lang.reflect.Method) }, which
+ * To make your own runner, extend this class replacing {@link #newTestContext(String)}  }
+ * and {@link #newTestContext(java.lang.reflect.Method, String)}  }, which
  * would return an implementation of {@link TestContext}
  *
  * @author quintin
@@ -82,7 +82,6 @@
     }
 
     /**
-     * @param clazz
      * @return a new class level context
      * @see #newTestContext(java.lang.String)
      */
@@ -100,7 +99,7 @@
      * context for no reason, and not free the memory throughout the run, though this
      * is probably quite rare and doesn't really matter.
      *
-     * @param clazz
+     * @param roleName
      * @return a new class level context
      */
     public TestContext newTestContext(String roleName) {
@@ -111,7 +110,7 @@
     }
 
     /**
-     * @param clazz
+     * @param method
      * @param method
      * @return a new method level context
      * @see #newTestContext(java.lang.reflect.Method, java.lang.String)
@@ -130,9 +129,8 @@
      * factory, a factory and a context. Either that or you need to specify the
      * factory class in every test.
      *
-     * @param clazz
      * @param method
-     * @param role   Role to execute the context in.
+     * @param roleName   Role to execute the context in.
      * @return a new method level context
      */
     public TestContext newTestContext(Method method, String roleName) {