You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/05/30 09:26:35 UTC

svn commit: r1129024 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/

Author: simonetripodi
Date: Mon May 30 07:26:34 2011
New Revision: 1129024

URL: http://svn.apache.org/viewvc?rev=1129024&view=rev
Log:
fixed checkstyle violation: Unused javadoc tags

Modified:
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/BeanPropertySetter.java
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallMethod.java
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallParam.java
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/FactoryCreate.java
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/ObjectCreate.java
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/PathCallParam.java
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetNext.java
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetProperty.java
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetRoot.java
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetTop.java

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/BeanPropertySetter.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/BeanPropertySetter.java?rev=1129024&r1=1129023&r2=1129024&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/BeanPropertySetter.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/BeanPropertySetter.java Mon May 30 07:26:34 2011
@@ -45,8 +45,6 @@ public @interface BeanPropertySetter
 
     /**
      * The element matching pattern.
-     * 
-     * @return the element matching pattern.
      */
     String pattern();
 

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallMethod.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallMethod.java?rev=1129024&r1=1129023&r2=1129024&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallMethod.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallMethod.java Mon May 30 07:26:34 2011
@@ -45,8 +45,6 @@ public @interface CallMethod
 
     /**
      * The element matching pattern.
-     * 
-     * @return the element matching pattern.
      */
     String pattern();
 
@@ -59,8 +57,6 @@ public @interface CallMethod
 
     /**
      * Marks the {@link CallMethodRule} to be invoked using the matching element body as argument.
-     *
-     * @return the {@link CallMethodRule} to be invoked using the matching element body as argument flag
      */
     boolean usingElementBodyAsArgument() default false;
 

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallParam.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallParam.java?rev=1129024&r1=1129023&r2=1129024&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallParam.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallParam.java Mon May 30 07:26:34 2011
@@ -45,8 +45,6 @@ public @interface CallParam
 
     /**
      * The element matching pattern.
-     * 
-     * @return the element matching pattern.
      */
     String pattern();
 
@@ -60,15 +58,13 @@ public @interface CallParam
     /**
      * The attribute from which to save the parameter value.
      *
-     * @return the attribute from which to save the parameter value
      * @since 3.0
      */
     String attributeName() default "";
 
     /**
      * Flags the parameter to be set from the stack.
-     * 
-     * @return true if the parameter has to be set from the stack, false otherwise
+     *
      * @since 3.0
      */
     boolean fromStack() default false;
@@ -76,7 +72,6 @@ public @interface CallParam
     /**
      * Sets the position of the object from the top of the stack.
      *
-     * @return The position of the object from the top of the stack
      * @since 3.0
      */
     int stackIndex() default 0;

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/FactoryCreate.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/FactoryCreate.java?rev=1129024&r1=1129023&r2=1129024&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/FactoryCreate.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/FactoryCreate.java Mon May 30 07:26:34 2011
@@ -47,24 +47,19 @@ public @interface FactoryCreate
 {
 
     /**
-     * The Java class of the object creation factory class
-     * 
-     * @return the Java class of the object creation factory class.
+     * The Java class of the object creation factory class.
      */
     Class<? extends AbstractObjectCreationFactory<?>> factoryClass() default DefaultObjectCreationFactory.class;
 
     /**
      * Allows specify the attribute containing an override class name if it is present.
      *
-     * @return The attribute containing an override class name if it is present
      * @since 3.0
      */
     String attributeName() default "";
 
     /**
      * The element matching pattern.
-     * 
-     * @return the element matching pattern.
      */
     String pattern();
 
@@ -77,8 +72,6 @@ public @interface FactoryCreate
 
     /**
      * When true any exceptions thrown during object creation will be ignored.
-     * 
-     * @return when true any exceptions thrown during object creation will be ignored.
      */
     boolean ignoreCreateExceptions() default false;
 

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/ObjectCreate.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/ObjectCreate.java?rev=1129024&r1=1129023&r2=1129024&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/ObjectCreate.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/ObjectCreate.java Mon May 30 07:26:34 2011
@@ -46,8 +46,6 @@ public @interface ObjectCreate
 
     /**
      * The element matching pattern.
-     * 
-     * @return the element matching pattern.
      */
     String pattern();
 
@@ -61,7 +59,6 @@ public @interface ObjectCreate
     /**
      * Allows specify the attribute containing an override class name if it is present.
      *
-     * @return The attribute containing an override class name if it is present
      * @since 3.0
      */
     String attributeName() default "";

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/PathCallParam.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/PathCallParam.java?rev=1129024&r1=1129023&r2=1129024&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/PathCallParam.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/PathCallParam.java Mon May 30 07:26:34 2011
@@ -45,8 +45,6 @@ public @interface PathCallParam
 
     /**
      * The element matching pattern.
-     * 
-     * @return the element matching pattern.
      */
     String pattern();
 

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetNext.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetNext.java?rev=1129024&r1=1129023&r2=1129024&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetNext.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetNext.java Mon May 30 07:26:34 2011
@@ -44,8 +44,6 @@ public @interface SetNext
 
     /**
      * Defines the concrete implementation(s) of @SetNext annotated method argument.
-     * 
-     * @return the concrete implementation(s) of @SetNext annotated method argument.
      */
     Class<?>[] value() default {};
 

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetProperty.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetProperty.java?rev=1129024&r1=1129023&r2=1129024&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetProperty.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetProperty.java Mon May 30 07:26:34 2011
@@ -45,8 +45,6 @@ public @interface SetProperty
 
     /**
      * The element matching pattern.
-     * 
-     * @return the element matching pattern.
      */
     String pattern();
 
@@ -59,8 +57,6 @@ public @interface SetProperty
 
     /**
      * The overridden parameter.
-     * 
-     * @return the overridden parameter.
      */
     String attributeName() default "";
 

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetRoot.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetRoot.java?rev=1129024&r1=1129023&r2=1129024&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetRoot.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetRoot.java Mon May 30 07:26:34 2011
@@ -44,8 +44,6 @@ public @interface SetRoot
 
     /**
      * Defines the concrete implementation(s) of @SetRoot annotated method argument.
-     * 
-     * @return the concrete implementation(s) of @SetRoot annotated method argument.
      */
     Class<?>[] value() default {};
 

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetTop.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetTop.java?rev=1129024&r1=1129023&r2=1129024&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetTop.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/SetTop.java Mon May 30 07:26:34 2011
@@ -45,8 +45,6 @@ public @interface SetTop
 
     /**
      * The element matching pattern.
-     * 
-     * @return the element matching pattern.
      */
     String pattern();