You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by oh...@apache.org on 2015/05/10 22:10:59 UTC

svn commit: r1678608 - /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/beanutils/XMLBeanDeclaration.java

Author: oheger
Date: Sun May 10 20:10:59 2015
New Revision: 1678608

URL: http://svn.apache.org/r1678608
Log:
Checkstyle: Missing @param tags for type parameter.

Modified:
    commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/beanutils/XMLBeanDeclaration.java

Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/beanutils/XMLBeanDeclaration.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/beanutils/XMLBeanDeclaration.java?rev=1678608&r1=1678607&r2=1678608&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/beanutils/XMLBeanDeclaration.java (original)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/beanutils/XMLBeanDeclaration.java Sun May 10 20:10:59 2015
@@ -168,6 +168,7 @@ public class XMLBeanDeclaration implemen
      * @param key the key to the bean declaration (this key must point to
      *        exactly one bean declaration or a {@code IllegalArgumentException}
      *        exception will be thrown)
+     * @param <T> the node type of the configuration
      * @throws IllegalArgumentException if required information is missing to
      *         construct the bean declaration
      */
@@ -185,6 +186,7 @@ public class XMLBeanDeclaration implemen
      * @param optional a flag whether this declaration is optional; if set to
      *        <b>true</b>, no exception will be thrown if the passed in key is
      *        undefined
+     * @param <T> the node type of the configuration
      * @throws IllegalArgumentException if required information is missing to
      *         construct the bean declaration
      */
@@ -213,6 +215,7 @@ public class XMLBeanDeclaration implemen
      *        <b>true</b>, no exception will be thrown if the passed in key is
      *        undefined
      * @param defBeanClsName a default bean class name
+     * @param <T> the node type of the configuration
      * @throws IllegalArgumentException if required information is missing to
      *         construct the bean declaration
      * @since 2.0
@@ -252,6 +255,7 @@ public class XMLBeanDeclaration implemen
      * node must contain the bean declaration.
      *
      * @param config the configuration with the bean declaration
+     * @param <T> the node type of the configuration
      */
     public <T> XMLBeanDeclaration(HierarchicalConfiguration<T> config)
     {