You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@onami.apache.org by si...@apache.org on 2013/01/19 21:21:59 UTC

svn commit: r1435667 - /incubator/onami/trunk/test/src/main/java/org/apache/onami/test/annotation/Mock.java

Author: simonetripodi
Date: Sat Jan 19 20:21:59 2013
New Revision: 1435667

URL: http://svn.apache.org/viewvc?rev=1435667&view=rev
Log:
fixed "Unused Javadoc tag." checkstyle rule

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

Modified: incubator/onami/trunk/test/src/main/java/org/apache/onami/test/annotation/Mock.java
URL: http://svn.apache.org/viewvc/incubator/onami/trunk/test/src/main/java/org/apache/onami/test/annotation/Mock.java?rev=1435667&r1=1435666&r2=1435667&view=diff
==============================================================================
--- incubator/onami/trunk/test/src/main/java/org/apache/onami/test/annotation/Mock.java (original)
+++ incubator/onami/trunk/test/src/main/java/org/apache/onami/test/annotation/Mock.java Sat Jan 19 20:21:59 2013
@@ -40,45 +40,33 @@ public @interface Mock
 
     /**
      * Indicates if this mock object has to be resetted after each test method Default: true
-     *
-     * @return the value
      */
     boolean resetAfter() default true;
 
     /**
      * The name of the method that provides to mock creation.
-     *
-     * @return
      */
     String providedBy() default "";
 
     /**
      * The {@link Class} that contains the method {@link Mock#providedBy()}. By default: the filed declaring class.
-     *
-     * @return
      */
     Class<?> providerClass() default Object.class;
 
     /**
      * Specifies an annotaion {@link Class} that will be used in the <em>Google Guice</em> binder to execute the literal
      * annotating binding.
-     *
-     * @return
      */
     Class<?> annotatedWith() default NoAnnotation.class;
 
     /**
      * Specifies an {@link String} annotation that will be used in the <em>Google Guice</em> binder to execute the
      * literal annotating binding via {@link com.google.inject.name.Named} class.
-     *
-     * @return
      */
     String namedWith() default "";
 
     /**
-     * Specifies
-     *
-     * @return
+     * Specifies TODO
      */
     MockObjType type() default MockObjType.DEFAULT;