Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/PropertyUtils.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/PropertyUtils.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/PropertyUtils.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/PropertyUtils.java Tue Jun 7 00:27:52 2016 @@ -202,13 +202,13 @@ public class PropertyUtils { * @param dest Destination bean whose properties are modified * @param orig Origin bean whose properties are retrieved * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if the <code>dest</code> or + * @throws IllegalArgumentException if the <code>dest</code> or * <code>orig</code> argument is null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#copyProperties */ @@ -229,12 +229,12 @@ public class PropertyUtils { * @param bean Bean whose properties are to be extracted * @return The set of properties for the bean * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> is null - * @exception InvocationTargetException if the property accessor method + * @throws IllegalArgumentException if <code>bean</code> is null + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#describe */ @@ -258,15 +258,15 @@ public class PropertyUtils { * to be extracted * @return the indexed property value * - * @exception IndexOutOfBoundsException if the specified index + * @throws IndexOutOfBoundsException if the specified index * is outside the valid range for the underlying property - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#getIndexedProperty(Object,String) */ @@ -290,15 +290,15 @@ public class PropertyUtils { * @param index Index of the property value to be extracted * @return the indexed property value * - * @exception IndexOutOfBoundsException if the specified index + * @throws IndexOutOfBoundsException if the specified index * is outside the valid range for the underlying property - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#getIndexedProperty(Object,String, int) */ @@ -322,11 +322,11 @@ public class PropertyUtils { * to be extracted * @return the mapped property value * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#getMappedProperty(Object,String) */ @@ -350,11 +350,11 @@ public class PropertyUtils { * @param key Key of the property value to be extracted * @return the mapped property value * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#getMappedProperty(Object,String, String) */ @@ -414,15 +414,15 @@ public class PropertyUtils { * @param name Possibly nested name of the property to be extracted * @return the nested property value * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception NestedNullException if a nested reference to a + * @throws NestedNullException if a nested reference to a * property returns null - * @exception InvocationTargetException + * @throws InvocationTargetException * if the property accessor method throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#getNestedProperty */ @@ -447,13 +447,13 @@ public class PropertyUtils { * to be extracted * @return the property value * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#getProperty */ @@ -478,15 +478,15 @@ public class PropertyUtils { * which a property descriptor is requested * @return the property descriptor * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception IllegalArgumentException if a nested reference to a + * @throws IllegalArgumentException if a nested reference to a * property returns null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#getPropertyDescriptor */ @@ -509,7 +509,7 @@ public class PropertyUtils { * * @param beanClass Bean class for which property descriptors are requested * @return the property descriptors - * @exception IllegalArgumentException if <code>beanClass</code> is null + * @throws IllegalArgumentException if <code>beanClass</code> is null * @see PropertyUtilsBean#getPropertyDescriptors(Class) */ public static PropertyDescriptor[] @@ -529,7 +529,7 @@ public class PropertyUtils { * * @param bean Bean for which property descriptors are requested * @return the property descriptors - * @exception IllegalArgumentException if <code>bean</code> is null + * @throws IllegalArgumentException if <code>bean</code> is null * @see PropertyUtilsBean#getPropertyDescriptors(Object) */ public static PropertyDescriptor[] getPropertyDescriptors(final Object bean) { @@ -550,15 +550,15 @@ public class PropertyUtils { * which a property descriptor is requested * @return the property editor class * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception IllegalArgumentException if a nested reference to a + * @throws IllegalArgumentException if a nested reference to a * property returns null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#getPropertyEditorClass(Object,String) */ @@ -583,15 +583,15 @@ public class PropertyUtils { * which a property descriptor is requested * @return The property type * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception IllegalArgumentException if a nested reference to a + * @throws IllegalArgumentException if a nested reference to a * property returns null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#getPropertyType(Object, String) */ @@ -630,15 +630,15 @@ public class PropertyUtils { * @param name Name of the property to be extracted * @return The property value * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception IllegalArgumentException if the property name + * @throws IllegalArgumentException if the property name * is nested or indexed - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#getSimpleProperty */ @@ -680,7 +680,7 @@ public class PropertyUtils { * @return <code>true</code> if the property is readable, * otherwise <code>false</code> * - * @exception IllegalArgumentException if <code>bean</code> + * @throws IllegalArgumentException if <code>bean</code> * or <code>name</code> is <code>null</code> * @see PropertyUtilsBean#isReadable * @since BeanUtils 1.6 @@ -703,7 +703,7 @@ public class PropertyUtils { * @return <code>true</code> if the property is writeable, * otherwise <code>false</code> * - * @exception IllegalArgumentException if <code>bean</code> + * @throws IllegalArgumentException if <code>bean</code> * or <code>name</code> is <code>null</code> * @see PropertyUtilsBean#isWriteable * @since BeanUtils 1.6 @@ -726,15 +726,15 @@ public class PropertyUtils { * @param value Value to which the specified property element * should be set * - * @exception IndexOutOfBoundsException if the specified index + * @throws IndexOutOfBoundsException if the specified index * is outside the valid range for the underlying property - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#setIndexedProperty(Object, String, Object) */ @@ -759,15 +759,15 @@ public class PropertyUtils { * @param index Index of the property value to be set * @param value Value to which the indexed property element is to be set * - * @exception IndexOutOfBoundsException if the specified index + * @throws IndexOutOfBoundsException if the specified index * is outside the valid range for the underlying property - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#setIndexedProperty(Object, String, Object) */ @@ -791,11 +791,11 @@ public class PropertyUtils { * to be set * @param value The property value to be set * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#setMappedProperty(Object, String, Object) */ @@ -819,11 +819,11 @@ public class PropertyUtils { * @param key Key of the property value to be set * @param value The property value to be set * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#setMappedProperty(Object, String, String, Object) */ @@ -846,15 +846,15 @@ public class PropertyUtils { * @param name Possibly nested name of the property to be modified * @param value Value to which the property is to be set * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception IllegalArgumentException if a nested reference to a + * @throws IllegalArgumentException if a nested reference to a * property returns null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#setNestedProperty */ @@ -879,13 +879,13 @@ public class PropertyUtils { * to be modified * @param value Value to which this property is to be set * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#setProperty */ @@ -908,15 +908,15 @@ public class PropertyUtils { * @param name Name of the property to be modified * @param value Value to which the property should be set * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception IllegalArgumentException if the property name is + * @throws IllegalArgumentException if the property name is * nested or indexed - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found * @see PropertyUtilsBean#setSimpleProperty */
Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/PropertyUtilsBean.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/PropertyUtilsBean.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/PropertyUtilsBean.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/PropertyUtilsBean.java Tue Jun 7 00:27:52 2016 @@ -255,13 +255,13 @@ public class PropertyUtilsBean { * @param dest Destination bean whose properties are modified * @param orig Origin bean whose properties are retrieved * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if the <code>dest</code> or + * @throws IllegalArgumentException if the <code>dest</code> or * <code>orig</code> argument is null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public void copyProperties(final Object dest, final Object orig) @@ -351,12 +351,12 @@ public class PropertyUtilsBean { * @param bean Bean whose properties are to be extracted * @return The set of properties for the bean * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> is null - * @exception InvocationTargetException if the property accessor method + * @throws IllegalArgumentException if <code>bean</code> is null + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public Map<String, Object> describe(final Object bean) @@ -402,15 +402,15 @@ public class PropertyUtilsBean { * to be extracted * @return the indexed property value * - * @exception IndexOutOfBoundsException if the specified index + * @throws IndexOutOfBoundsException if the specified index * is outside the valid range for the underlying array or List - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public Object getIndexedProperty(final Object bean, String name) @@ -459,15 +459,15 @@ public class PropertyUtilsBean { * @param index Index of the property value to be extracted * @return the indexed property value * - * @exception IndexOutOfBoundsException if the specified index + * @throws IndexOutOfBoundsException if the specified index * is outside the valid range for the underlying property - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public Object getIndexedProperty(final Object bean, @@ -574,11 +574,11 @@ public class PropertyUtilsBean { * to be extracted * @return the mapped property value * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public Object getMappedProperty(final Object bean, String name) @@ -625,11 +625,11 @@ public class PropertyUtilsBean { * @param key Key of the property value to be extracted * @return the mapped property value * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public Object getMappedProperty(final Object bean, @@ -753,15 +753,15 @@ public class PropertyUtilsBean { * @param name Possibly nested name of the property to be extracted * @return the nested property value * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception NestedNullException if a nested reference to a + * @throws NestedNullException if a nested reference to a * property returns null - * @exception InvocationTargetException + * @throws InvocationTargetException * if the property accessor method throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public Object getNestedProperty(Object bean, String name) @@ -868,13 +868,13 @@ public class PropertyUtilsBean { * to be extracted * @return the property value * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public Object getProperty(final Object bean, final String name) @@ -901,15 +901,15 @@ public class PropertyUtilsBean { * which a property descriptor is requested * @return the property descriptor * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception IllegalArgumentException if a nested reference to a + * @throws IllegalArgumentException if a nested reference to a * property returns null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public PropertyDescriptor getPropertyDescriptor(Object bean, @@ -990,7 +990,7 @@ public class PropertyUtilsBean { * @param beanClass Bean class for which property descriptors are requested * @return the property descriptors * - * @exception IllegalArgumentException if <code>beanClass</code> is null + * @throws IllegalArgumentException if <code>beanClass</code> is null */ public PropertyDescriptor[] getPropertyDescriptors(final Class<?> beanClass) { @@ -1009,7 +1009,7 @@ public class PropertyUtilsBean { * @param bean Bean for which property descriptors are requested * @return the property descriptors * - * @exception IllegalArgumentException if <code>bean</code> is null + * @throws IllegalArgumentException if <code>bean</code> is null */ public PropertyDescriptor[] getPropertyDescriptors(final Object bean) { @@ -1040,15 +1040,15 @@ public class PropertyUtilsBean { * which a property descriptor is requested * @return the property editor class * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception IllegalArgumentException if a nested reference to a + * @throws IllegalArgumentException if a nested reference to a * property returns null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public Class<?> getPropertyEditorClass(final Object bean, final String name) @@ -1088,15 +1088,15 @@ public class PropertyUtilsBean { * which a property descriptor is requested * @return The property type * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception IllegalArgumentException if a nested reference to a + * @throws IllegalArgumentException if a nested reference to a * property returns null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public Class<?> getPropertyType(Object bean, String name) @@ -1200,15 +1200,15 @@ public class PropertyUtilsBean { * @param name Name of the property to be extracted * @return The property value * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception IllegalArgumentException if the property name + * @throws IllegalArgumentException if the property name * is nested or indexed - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public Object getSimpleProperty(final Object bean, final String name) @@ -1319,7 +1319,7 @@ public class PropertyUtilsBean { * @return <code>true</code> if the property is readable, * otherwise <code>false</code> * - * @exception IllegalArgumentException if <code>bean</code> + * @throws IllegalArgumentException if <code>bean</code> * or <code>name</code> is <code>null</code> * * @since BeanUtils 1.6 @@ -1410,7 +1410,7 @@ public class PropertyUtilsBean { * @return <code>true</code> if the property is writeable, * otherwise <code>false</code> * - * @exception IllegalArgumentException if <code>bean</code> + * @throws IllegalArgumentException if <code>bean</code> * or <code>name</code> is <code>null</code> * * @since BeanUtils 1.6 @@ -1505,15 +1505,15 @@ public class PropertyUtilsBean { * @param value Value to which the specified property element * should be set * - * @exception IndexOutOfBoundsException if the specified index + * @throws IndexOutOfBoundsException if the specified index * is outside the valid range for the underlying property - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public void setIndexedProperty(final Object bean, String name, @@ -1562,15 +1562,15 @@ public class PropertyUtilsBean { * @param index Index of the property value to be set * @param value Value to which the indexed property element is to be set * - * @exception IndexOutOfBoundsException if the specified index + * @throws IndexOutOfBoundsException if the specified index * is outside the valid range for the underlying property - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public void setIndexedProperty(final Object bean, final String name, @@ -1687,11 +1687,11 @@ public class PropertyUtilsBean { * to be set * @param value The property value to be set * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public void setMappedProperty(final Object bean, String name, @@ -1740,11 +1740,11 @@ public class PropertyUtilsBean { * @param key Key of the property value to be set * @param value The property value to be set * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public void setMappedProperty(final Object bean, final String name, @@ -1847,15 +1847,15 @@ public class PropertyUtilsBean { * @param name Possibly nested name of the property to be modified * @param value Value to which the property is to be set * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception IllegalArgumentException if a nested reference to a + * @throws IllegalArgumentException if a nested reference to a * property returns null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public void setNestedProperty(Object bean, @@ -1994,13 +1994,13 @@ public class PropertyUtilsBean { * to be modified * @param value Value to which this property is to be set * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public void setProperty(final Object bean, final String name, final Object value) @@ -2020,15 +2020,15 @@ public class PropertyUtilsBean { * @param name Name of the property to be modified * @param value Value to which the property should be set * - * @exception IllegalAccessException if the caller does not have + * @throws IllegalAccessException if the caller does not have * access to the property accessor method - * @exception IllegalArgumentException if <code>bean</code> or + * @throws IllegalArgumentException if <code>bean</code> or * <code>name</code> is null - * @exception IllegalArgumentException if the property name is + * @throws IllegalArgumentException if the property name is * nested or indexed - * @exception InvocationTargetException if the property accessor method + * @throws InvocationTargetException if the property accessor method * throws an exception - * @exception NoSuchMethodException if an accessor method for this + * @throws NoSuchMethodException if an accessor method for this * propety cannot be found */ public void setSimpleProperty(final Object bean, Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ResultSetDynaClass.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ResultSetDynaClass.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ResultSetDynaClass.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ResultSetDynaClass.java Tue Jun 7 00:27:52 2016 @@ -93,9 +93,9 @@ public class ResultSetDynaClass extends * * @param resultSet The result set to be wrapped * - * @exception NullPointerException if <code>resultSet</code> + * @throws NullPointerException if <code>resultSet</code> * is <code>null</code> - * @exception SQLException if the metadata for this result set + * @throws SQLException if the metadata for this result set * cannot be introspected */ public ResultSetDynaClass(final ResultSet resultSet) throws SQLException { @@ -121,9 +121,9 @@ public class ResultSetDynaClass extends * @param resultSet The result set to be wrapped * @param lowerCase Should property names be lower cased? * - * @exception NullPointerException if <code>resultSet</code> + * @throws NullPointerException if <code>resultSet</code> * is <code>null</code> - * @exception SQLException if the metadata for this result set + * @throws SQLException if the metadata for this result set * cannot be introspected */ public ResultSetDynaClass(final ResultSet resultSet, final boolean lowerCase) @@ -151,9 +151,9 @@ public class ResultSetDynaClass extends * @param lowerCase Should property names be lower cased? * @param useColumnLabel true if the column label should be used, otherwise false * - * @exception NullPointerException if <code>resultSet</code> + * @throws NullPointerException if <code>resultSet</code> * is <code>null</code> - * @exception SQLException if the metadata for this result set + * @throws SQLException if the metadata for this result set * cannot be introspected * @since 1.8.3 */ Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ResultSetIterator.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ResultSetIterator.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ResultSetIterator.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ResultSetIterator.java Tue Jun 7 00:27:52 2016 @@ -89,7 +89,7 @@ public class ResultSetIterator implement * @return <code>true<code> if the mapped property contains a value for * the specified key, otherwise <code>false</code> * - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name */ public boolean contains(final String name, final String key) { @@ -106,7 +106,7 @@ public class ResultSetIterator implement * @param name Name of the property whose value is to be retrieved * @return The property's value * - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name */ public Object get(final String name) { @@ -131,13 +131,13 @@ public class ResultSetIterator implement * @param index Index of the value to be retrieved * @return The indexed property's value * - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name - * @exception IllegalArgumentException if the specified property + * @throws IllegalArgumentException if the specified property * exists, but is not indexed - * @exception IndexOutOfBoundsException if the specified index + * @throws IndexOutOfBoundsException if the specified index * is outside the range of the underlying property - * @exception NullPointerException if no array or List has been + * @throws NullPointerException if no array or List has been * initialized for this property */ public Object get(final String name, final int index) { @@ -156,9 +156,9 @@ public class ResultSetIterator implement * @param key Key of the value to be retrieved * @return The mapped property's value * - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name - * @exception IllegalArgumentException if the specified property + * @throws IllegalArgumentException if the specified property * exists, but is not mapped */ public Object get(final String name, final String key) { @@ -190,7 +190,7 @@ public class ResultSetIterator implement * be removed * @param key Key of the value to be removed * - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name */ public void remove(final String name, final String key) { @@ -207,11 +207,11 @@ public class ResultSetIterator implement * @param name Name of the property whose value is to be set * @param value Value to which this property is to be set * - * @exception ConversionException if the specified value cannot be + * @throws ConversionException if the specified value cannot be * converted to the type required for this property - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name - * @exception NullPointerException if an attempt is made to set a + * @throws NullPointerException if an attempt is made to set a * primitive property to null */ public void set(final String name, final Object value) { @@ -236,13 +236,13 @@ public class ResultSetIterator implement * @param index Index of the property to be set * @param value Value to which this property is to be set * - * @exception ConversionException if the specified value cannot be + * @throws ConversionException if the specified value cannot be * converted to the type required for this property - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name - * @exception IllegalArgumentException if the specified property + * @throws IllegalArgumentException if the specified property * exists, but is not indexed - * @exception IndexOutOfBoundsException if the specified index + * @throws IndexOutOfBoundsException if the specified index * is outside the range of the underlying property */ public void set(final String name, final int index, final Object value) { @@ -260,11 +260,11 @@ public class ResultSetIterator implement * @param key Key of the property to be set * @param value Value to which this property is to be set * - * @exception ConversionException if the specified value cannot be + * @throws ConversionException if the specified value cannot be * converted to the type required for this property - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name - * @exception IllegalArgumentException if the specified property + * @throws IllegalArgumentException if the specified property * exists, but is not mapped */ public void set(final String name, final String key, final Object value) { @@ -335,7 +335,7 @@ public class ResultSetIterator implement * <p>Advance the result set to the next row, if there is not a current * row (and if we are not already at eof).</p> * - * @exception SQLException if the result set throws an exception + * @throws SQLException if the result set throws an exception */ protected void advance() throws SQLException { Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/RowSetDynaClass.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/RowSetDynaClass.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/RowSetDynaClass.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/RowSetDynaClass.java Tue Jun 7 00:27:52 2016 @@ -94,9 +94,9 @@ public class RowSetDynaClass extends JDB * * @param resultSet The result set to be wrapped * - * @exception NullPointerException if <code>resultSet</code> + * @throws NullPointerException if <code>resultSet</code> * is <code>null</code> - * @exception SQLException if the metadata for this result set + * @throws SQLException if the metadata for this result set * cannot be introspected */ public RowSetDynaClass(final ResultSet resultSet) throws SQLException { @@ -116,9 +116,9 @@ public class RowSetDynaClass extends JDB * @param resultSet The result set to be wrapped * @param limit The maximum for the size of the result. * - * @exception NullPointerException if <code>resultSet</code> + * @throws NullPointerException if <code>resultSet</code> * is <code>null</code> - * @exception SQLException if the metadata for this result set + * @throws SQLException if the metadata for this result set * cannot be introspected */ public RowSetDynaClass(final ResultSet resultSet, final int limit) throws SQLException { @@ -141,9 +141,9 @@ public class RowSetDynaClass extends JDB * @param resultSet The result set to be wrapped * @param lowerCase Should property names be lower cased? * - * @exception NullPointerException if <code>resultSet</code> + * @throws NullPointerException if <code>resultSet</code> * is <code>null</code> - * @exception SQLException if the metadata for this result set + * @throws SQLException if the metadata for this result set * cannot be introspected */ public RowSetDynaClass(final ResultSet resultSet, final boolean lowerCase) @@ -169,9 +169,9 @@ public class RowSetDynaClass extends JDB * @param lowerCase Should property names be lower cased? * @param limit Maximum limit for the <code>List</code> of {@link DynaBean} * - * @exception NullPointerException if <code>resultSet</code> + * @throws NullPointerException if <code>resultSet</code> * is <code>null</code> - * @exception SQLException if the metadata for this result set + * @throws SQLException if the metadata for this result set * cannot be introspected */ public RowSetDynaClass(final ResultSet resultSet, final boolean lowerCase, final int limit) @@ -198,9 +198,9 @@ public class RowSetDynaClass extends JDB * @param lowerCase Should property names be lower cased? * @param useColumnLabel true if the column label should be used, otherwise false * - * @exception NullPointerException if <code>resultSet</code> + * @throws NullPointerException if <code>resultSet</code> * is <code>null</code> - * @exception SQLException if the metadata for this result set + * @throws SQLException if the metadata for this result set * cannot be introspected * @since 1.8.3 */ @@ -228,9 +228,9 @@ public class RowSetDynaClass extends JDB * @param limit Maximum limit for the <code>List</code> of {@link DynaBean} * @param useColumnLabel true if the column label should be used, otherwise false * - * @exception NullPointerException if <code>resultSet</code> + * @throws NullPointerException if <code>resultSet</code> * is <code>null</code> - * @exception SQLException if the metadata for this result set + * @throws SQLException if the metadata for this result set * cannot be introspected * @since 1.8.3 */ @@ -280,7 +280,7 @@ public class RowSetDynaClass extends JDB * @param resultSet The <code>ResultSet</code> whose data is to be * copied * - * @exception SQLException if an error is encountered copying the data + * @throws SQLException if an error is encountered copying the data */ protected void copy(final ResultSet resultSet) throws SQLException { Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/WrapDynaBean.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/WrapDynaBean.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/WrapDynaBean.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/WrapDynaBean.java Tue Jun 7 00:27:52 2016 @@ -108,7 +108,7 @@ public class WrapDynaBean implements Dyn * @return <code>true<code> if the mapped property contains a value for * the specified key, otherwise <code>false</code> * - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name */ public boolean contains(final String name, final String key) { @@ -125,7 +125,7 @@ public class WrapDynaBean implements Dyn * @param name Name of the property whose value is to be retrieved * @return The property's value * - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name */ public Object get(final String name) { @@ -155,13 +155,13 @@ public class WrapDynaBean implements Dyn * @param index Index of the value to be retrieved * @return The indexed property's value * - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name - * @exception IllegalArgumentException if the specified property + * @throws IllegalArgumentException if the specified property * exists, but is not indexed - * @exception IndexOutOfBoundsException if the specified index + * @throws IndexOutOfBoundsException if the specified index * is outside the range of the underlying property - * @exception NullPointerException if no array or List has been + * @throws NullPointerException if no array or List has been * initialized for this property */ public Object get(final String name, final int index) { @@ -194,9 +194,9 @@ public class WrapDynaBean implements Dyn * @param key Key of the value to be retrieved * @return The mapped property's value * - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name - * @exception IllegalArgumentException if the specified property + * @throws IllegalArgumentException if the specified property * exists, but is not mapped */ public Object get(final String name, final String key) { @@ -243,7 +243,7 @@ public class WrapDynaBean implements Dyn * be removed * @param key Key of the value to be removed * - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name */ public void remove(final String name, final String key) { @@ -261,11 +261,11 @@ public class WrapDynaBean implements Dyn * @param name Name of the property whose value is to be set * @param value Value to which this property is to be set * - * @exception ConversionException if the specified value cannot be + * @throws ConversionException if the specified value cannot be * converted to the type required for this property - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name - * @exception NullPointerException if an attempt is made to set a + * @throws NullPointerException if an attempt is made to set a * primitive property to null */ public void set(final String name, final Object value) { @@ -293,13 +293,13 @@ public class WrapDynaBean implements Dyn * @param index Index of the property to be set * @param value Value to which this property is to be set * - * @exception ConversionException if the specified value cannot be + * @throws ConversionException if the specified value cannot be * converted to the type required for this property - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name - * @exception IllegalArgumentException if the specified property + * @throws IllegalArgumentException if the specified property * exists, but is not indexed - * @exception IndexOutOfBoundsException if the specified index + * @throws IndexOutOfBoundsException if the specified index * is outside the range of the underlying property */ public void set(final String name, final int index, final Object value) { @@ -329,11 +329,11 @@ public class WrapDynaBean implements Dyn * @param key Key of the property to be set * @param value Value to which this property is to be set * - * @exception ConversionException if the specified value cannot be + * @throws ConversionException if the specified value cannot be * converted to the type required for this property - * @exception IllegalArgumentException if there is no property + * @throws IllegalArgumentException if there is no property * of the specified name - * @exception IllegalArgumentException if the specified property + * @throws IllegalArgumentException if the specified property * exists, but is not mapped */ public void set(final String name, final String key, final Object value) { @@ -377,7 +377,7 @@ public class WrapDynaBean implements Dyn * @param name Name of the property for which to retrieve the descriptor * @return The descriptor for the specified property * - * @exception IllegalArgumentException if this is not a valid property + * @throws IllegalArgumentException if this is not a valid property * name for our DynaClass */ protected DynaProperty getDynaProperty(final String name) { Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/WrapDynaClass.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/WrapDynaClass.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/WrapDynaClass.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/WrapDynaClass.java Tue Jun 7 00:27:52 2016 @@ -299,7 +299,7 @@ public class WrapDynaClass implements Dy * is requested * @return The descriptor for the specified property * - * @exception IllegalArgumentException if no property name is specified + * @throws IllegalArgumentException if no property name is specified */ public DynaProperty getDynaProperty(final String name) { @@ -349,9 +349,9 @@ public class WrapDynaClass implements Dy * </p> * * @return A new <code>DynaBean</code> instance - * @exception IllegalAccessException if the Class or the appropriate + * @throws IllegalAccessException if the Class or the appropriate * constructor is not accessible - * @exception InstantiationException if this Class represents an abstract + * @throws InstantiationException if this Class represents an abstract * class, an array class, a primitive type, or void; or if instantiation * fails for some other reason */ Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/AbstractArrayConverter.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/AbstractArrayConverter.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/AbstractArrayConverter.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/AbstractArrayConverter.java Tue Jun 7 00:27:52 2016 @@ -128,7 +128,7 @@ public abstract class AbstractArrayConve * @param value The input value to be converted * @return The converted value * - * @exception ConversionException if conversion cannot be performed + * @throws ConversionException if conversion cannot be performed * successfully */ public abstract Object convert(Class type, Object value); @@ -153,9 +153,9 @@ public abstract class AbstractArrayConve * @param svalue String value to be parsed * @return The parsed list of String values * - * @exception ConversionException if the syntax of <code>svalue</code> + * @throws ConversionException if the syntax of <code>svalue</code> * is not syntactically valid - * @exception NullPointerException if <code>svalue</code> + * @throws NullPointerException if <code>svalue</code> * is <code>null</code> */ protected List parseElements(String svalue) { Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/BooleanArrayConverter.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/BooleanArrayConverter.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/BooleanArrayConverter.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/BooleanArrayConverter.java Tue Jun 7 00:27:52 2016 @@ -172,11 +172,11 @@ public final class BooleanArrayConverter * any sort of error during conversion and the constructor * was provided with a default value. * - * @exception ConversionException if conversion cannot be performed + * @throws ConversionException if conversion cannot be performed * successfully and the constructor was not provided with a default * value to return on conversion failure. * - * @exception NullPointerException if value is an array, and any of the + * @throws NullPointerException if value is an array, and any of the * array elements are null. */ @Override Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/ByteArrayConverter.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/ByteArrayConverter.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/ByteArrayConverter.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/ByteArrayConverter.java Tue Jun 7 00:27:52 2016 @@ -86,7 +86,7 @@ public final class ByteArrayConverter ex * @param type Data type to which this value should be converted * @param value The input value to be converted * @return the converted value - * @exception ConversionException if conversion cannot be performed + * @throws ConversionException if conversion cannot be performed * successfully */ @Override Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/CharacterArrayConverter.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/CharacterArrayConverter.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/CharacterArrayConverter.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/CharacterArrayConverter.java Tue Jun 7 00:27:52 2016 @@ -87,7 +87,7 @@ public final class CharacterArrayConvert * @param value The input value to be converted * @return the converted value * - * @exception ConversionException if conversion cannot be performed + * @throws ConversionException if conversion cannot be performed * successfully */ @Override Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/DoubleArrayConverter.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/DoubleArrayConverter.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/DoubleArrayConverter.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/DoubleArrayConverter.java Tue Jun 7 00:27:52 2016 @@ -86,7 +86,7 @@ public final class DoubleArrayConverter * @param type Data type to which this value should be converted * @param value The input value to be converted * @return the converted value - * @exception ConversionException if conversion cannot be performed + * @throws ConversionException if conversion cannot be performed * successfully */ @Override Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/FloatArrayConverter.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/FloatArrayConverter.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/FloatArrayConverter.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/FloatArrayConverter.java Tue Jun 7 00:27:52 2016 @@ -87,7 +87,7 @@ public final class FloatArrayConverter e * @param value The input value to be converted * @return the converted value * - * @exception ConversionException if conversion cannot be performed + * @throws ConversionException if conversion cannot be performed * successfully */ @Override Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/IntegerArrayConverter.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/IntegerArrayConverter.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/IntegerArrayConverter.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/IntegerArrayConverter.java Tue Jun 7 00:27:52 2016 @@ -87,7 +87,7 @@ public final class IntegerArrayConverter * @param value The input value to be converted * @return the converted value * - * @exception ConversionException if conversion cannot be performed + * @throws ConversionException if conversion cannot be performed * successfully */ @Override Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/LongArrayConverter.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/LongArrayConverter.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/LongArrayConverter.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/LongArrayConverter.java Tue Jun 7 00:27:52 2016 @@ -87,7 +87,7 @@ public final class LongArrayConverter ex * @param value The input value to be converted * @return the converted value * - * @exception ConversionException if conversion cannot be performed + * @throws ConversionException if conversion cannot be performed * successfully */ @Override Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/ShortArrayConverter.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/ShortArrayConverter.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/ShortArrayConverter.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/ShortArrayConverter.java Tue Jun 7 00:27:52 2016 @@ -87,7 +87,7 @@ public final class ShortArrayConverter e * @param value The input value to be converted * @return the converted value * - * @exception ConversionException if conversion cannot be performed + * @throws ConversionException if conversion cannot be performed * successfully */ @Override Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/StringArrayConverter.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/StringArrayConverter.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/StringArrayConverter.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/converters/StringArrayConverter.java Tue Jun 7 00:27:52 2016 @@ -116,7 +116,7 @@ public final class StringArrayConverter * exists. * @return the converted value * - * @exception ConversionException if conversion cannot be performed + * @throws ConversionException if conversion cannot be performed * successfully, or the input is null and there is no default value set * for this object. */ Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/locale/BaseLocaleConverter.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/locale/BaseLocaleConverter.java?rev=1747095&r1=1747094&r2=1747095&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/locale/BaseLocaleConverter.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/locale/BaseLocaleConverter.java Tue Jun 7 00:27:52 2016 @@ -150,7 +150,7 @@ public abstract class BaseLocaleConverte * @param pattern The pattern is used for the convertion * @return The converted value * - * @exception ParseException if conversion cannot be performed + * @throws ParseException if conversion cannot be performed * successfully */ @@ -164,7 +164,7 @@ public abstract class BaseLocaleConverte * @param value The input object to be converted * @return The converted value * - * @exception ConversionException if conversion cannot be performed + * @throws ConversionException if conversion cannot be performed * successfully */ public Object convert(final Object value) { @@ -178,7 +178,7 @@ public abstract class BaseLocaleConverte * @param pattern The pattern is used for the conversion * @return The converted value * - * @exception ConversionException if conversion cannot be performed + * @throws ConversionException if conversion cannot be performed * successfully */ public Object convert(final Object value, final String pattern) { @@ -194,7 +194,7 @@ public abstract class BaseLocaleConverte * @param value The input object to be converted * @return The converted value * - * @exception ConversionException if conversion cannot be performed + * @throws ConversionException if conversion cannot be performed * successfully */ public <T> T convert(final Class<T> type, final Object value) { @@ -213,7 +213,7 @@ public abstract class BaseLocaleConverte * will be used. * @return The converted value * - * @exception ConversionException if conversion cannot be performed + * @throws ConversionException if conversion cannot be performed * successfully */ public <T> T convert(final Class<T> type, final Object value, final String pattern) {
