You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2013/02/07 21:41:03 UTC

svn commit: r1443713 - /commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/BeanUtils.java

Author: britter
Date: Thu Feb  7 20:41:02 2013
New Revision: 1443713

URL: http://svn.apache.org/r1443713
Log:
Added @param tag for generic type parameters to fix checkstyle issues

Modified:
    commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/BeanUtils.java

Modified: commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/BeanUtils.java
URL: http://svn.apache.org/viewvc/commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/BeanUtils.java?rev=1443713&r1=1443712&r2=1443713&view=diff
==============================================================================
--- commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/BeanUtils.java (original)
+++ commons/sandbox/beanutils2/trunk/src/main/java/org/apache/commons/beanutils2/BeanUtils.java Thu Feb  7 20:41:02 2013
@@ -39,6 +39,7 @@ public final class BeanUtils
      * Creates a {@link BeanAcessor} for the given bean, that allows access to the bean's properties and methods.
      *
      * @param bean the bean to be accessed. Must not be {@code null}!
+     * @param <B> the type of the bean.
      * @return a BeanAccessor for the given bean.
      */
     public static <B> BeanAccessor<B> on( B bean )
@@ -54,6 +55,7 @@ public final class BeanUtils
      * static methods.
      *
      * @param beanType the type to be accessed. Must not be {@code null}!
+     * @param <B> the type modeled by the given class object.
      * @return a ClassAccessor for the given type.
      */
     public static <B> ClassAccessor<B> on( Class<B> beanType )