You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@onami.apache.org by ma...@apache.org on 2013/01/20 18:39:12 UTC

svn commit: r1435900 - /incubator/onami/trunk/test/src/main/java/org/apache/onami/test/OnamiRunner.java

Author: marcosperanza
Date: Sun Jan 20 17:39:12 2013
New Revision: 1435900

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

Modified:
    incubator/onami/trunk/test/src/main/java/org/apache/onami/test/OnamiRunner.java

Modified: incubator/onami/trunk/test/src/main/java/org/apache/onami/test/OnamiRunner.java
URL: http://svn.apache.org/viewvc/incubator/onami/trunk/test/src/main/java/org/apache/onami/test/OnamiRunner.java?rev=1435900&r1=1435899&r2=1435900&view=diff
==============================================================================
--- incubator/onami/trunk/test/src/main/java/org/apache/onami/test/OnamiRunner.java (original)
+++ incubator/onami/trunk/test/src/main/java/org/apache/onami/test/OnamiRunner.java Sun Jan 20 17:39:12 2013
@@ -219,6 +219,8 @@ public class OnamiRunner
 
     /**
      * Creates test instance via Google-Guice to inject all not-static dependencies.
+     * @return The instance of the test case.
+     * @throws Exception when an error occurs.
      */
     protected Object createTest()
         throws Exception
@@ -247,9 +249,9 @@ public class OnamiRunner
      * @param <T> whatever input type is accepted
      * @param clazz the input class has to be analyzed
      * @return a List of Guice Modules built after input class analysis.
-     * @throws IllegalAccessException
-     * @throws InstantiationException
-     * @throws HandleException
+     * @throws IllegalAccessException when a n error occurs.
+     * @throws InstantiationException when a n error occurs.
+     * @throws HandleException when a n error occurs.
      */
     protected <T> List<Module> inizializeInjector( Class<T> clazz )
         throws HandleException, InstantiationException, IllegalAccessException