You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by di...@apache.org on 2002/03/24 10:15:16 UTC

cvs commit: jakarta-commons/beanutils/src/java/org/apache/commons/beanutils MethodUtils.java

dion        02/03/24 01:15:16

  Modified:    beanutils/src/java/org/apache/commons/beanutils
                        MethodUtils.java
  Log:
  Fixed javadoc breakiterator issues
  
  Revision  Changes    Path
  1.8       +18 -18    jakarta-commons/beanutils/src/java/org/apache/commons/beanutils/MethodUtils.java
  
  Index: MethodUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/beanutils/src/java/org/apache/commons/beanutils/MethodUtils.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- MethodUtils.java	14 Mar 2002 20:10:38 -0000	1.7
  +++ MethodUtils.java	24 Mar 2002 09:15:16 -0000	1.8
  @@ -112,10 +112,10 @@
        * @param methodName get method with this name
        * @param arg use this argument
        *
  -     * @throw NoSuchMethodException if there is no such accessible method
  -     * @throw InvocationTargetException wraps an exception thrown by the
  +     * @throws NoSuchMethodException if there is no such accessible method
  +     * @throws InvocationTargetException wraps an exception thrown by the
        *  method invoked
  -     * @throw IllegalAccessException if the requested method is not accessible
  +     * @throws IllegalAccessException if the requested method is not accessible
        *  via reflection
        */
       public static Object invokeMethod(
  @@ -149,10 +149,10 @@
        * @param methodName get method with this name
        * @param args use these arguments
        *
  -     * @throw NoSuchMethodException if there is no such accessible method
  -     * @throw InvocationTargetException wraps an exception thrown by the
  +     * @throws NoSuchMethodException if there is no such accessible method
  +     * @throws InvocationTargetException wraps an exception thrown by the
        *  method invoked
  -     * @throw IllegalAccessException if the requested method is not accessible
  +     * @throws IllegalAccessException if the requested method is not accessible
        *  via reflection
        */
       public static Object invokeMethod(
  @@ -189,10 +189,10 @@
        * @param args use these arguments
        * @param parameterTypes match these parameters
        *
  -     * @throw NoSuchMethodException if there is no such accessible method
  -     * @throw InvocationTargetException wraps an exception thrown by the
  +     * @throws NoSuchMethodException if there is no such accessible method
  +     * @throws InvocationTargetException wraps an exception thrown by the
        *  method invoked
  -     * @throw IllegalAccessException if the requested method is not accessible
  +     * @throws IllegalAccessException if the requested method is not accessible
        *  via reflection
        */
       public static Object invokeMethod(
  @@ -229,10 +229,10 @@
        * @param methodName get method with this name
        * @param arg use this argument
        *
  -     * @throw NoSuchMethodException if there is no such accessible method
  -     * @throw InvocationTargetException wraps an exception thrown by the
  +     * @throws NoSuchMethodException if there is no such accessible method
  +     * @throws InvocationTargetException wraps an exception thrown by the
        *  method invoked
  -     * @throw IllegalAccessException if the requested method is not accessible
  +     * @throws IllegalAccessException if the requested method is not accessible
        *  via reflection
        */
       public static Object invokeExactMethod(
  @@ -261,10 +261,10 @@
        * @param methodName get method with this name
        * @param args use these arguments
        *
  -     * @throw NoSuchMethodException if there is no such accessible method
  -     * @throw InvocationTargetException wraps an exception thrown by the
  +     * @throws NoSuchMethodException if there is no such accessible method
  +     * @throws InvocationTargetException wraps an exception thrown by the
        *  method invoked
  -     * @throw IllegalAccessException if the requested method is not accessible
  +     * @throws IllegalAccessException if the requested method is not accessible
        *  via reflection
        */
       public static Object invokeExactMethod(
  @@ -298,10 +298,10 @@
        * @param args use these arguments
        * @param parameterTypes match these parameters
        *
  -     * @throw NoSuchMethodException if there is no such accessible method
  -     * @throw InvocationTargetException wraps an exception thrown by the
  +     * @throws NoSuchMethodException if there is no such accessible method
  +     * @throws InvocationTargetException wraps an exception thrown by the
        *  method invoked
  -     * @throw IllegalAccessException if the requested method is not accessible
  +     * @throws IllegalAccessException if the requested method is not accessible
        *  via reflection
        */
       public static Object invokeExactMethod(
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>