You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Creates an array of parameters to pass to the given mutator method. If the given object is not the right type to pass to the method directly, it will be
355
355
* converted using {@link #convertType(Class,Object)}.
356
356
*
357
-
* @param method the mutator method
358
-
* @param value the value to pass to the mutator method
357
+
* @param method The mutator method
358
+
* @param value The value to pass to the mutator method
359
359
* @return An array containing one object that is either the given value or a transformed value
360
360
* @throws IllegalAccessException if {@link #convertType(Class,Object)} raises it
361
361
* @throws IllegalArgumentException if any other exception is raised by {@link #convertType(Class,Object)}
@@ -436,9 +436,9 @@ public int size() {
436
436
* Called during a successful {@link #put(Object,Object)} operation. Default implementation does nothing. Override to be notified of property changes in the
437
437
* bean caused by this map.
438
438
*
439
-
* @param key the name of the property that changed
440
-
* @param oldValue the old value for that property
441
-
* @param newValue the new value for that property
439
+
* @param key The name of the property that changed
@@ -451,7 +451,7 @@ protected void firePropertyChange(final Object key, final Object oldValue, final
451
451
* <p>
452
452
* Write-only properties will not be matched as the test operates against property read methods.
453
453
*
454
-
* @param name the name of the property whose value to return
454
+
* @param name The name of the property whose value to return
455
455
* @return The value of the property with that name
456
456
*/
457
457
@Override
@@ -483,7 +483,7 @@ public Object getBean() {
483
483
/**
484
484
* Returns the accessor for the property with the given name.
485
485
*
486
-
* @param name the name of the property
486
+
* @param name The name of the property
487
487
* @return null if the name is null; null if the name is not a {@link String}; null if no such property exists; or the accessor method for that property
* Returns the mutator for the property with the given name.
527
527
*
528
-
* @param name the name of the
528
+
* @param name The name of the
529
529
* @return null if the name is null; null if the name is not a {@link String}; null if no such property exists; null if the property is read-only; or the
* Sets the bean property with the given name to the given value.
631
631
*
632
-
* @param name the name of the property to set
633
-
* @param value the value to set that property to
632
+
* @param name The name of the property to set
633
+
* @param value The value to set that property to
634
634
* @return The previous value of that property
635
635
* @throws IllegalArgumentException if the given name is null; if the given name is not a {@link String}; if the bean doesn't define a property with that
636
636
* name; or if the bean property with that name is read-only
@@ -661,7 +661,7 @@ public Object put(final Object name, final Object value) throws IllegalArgumentE
661
661
/**
662
662
* Puts all of the writable properties from the given BeanMap into this BeanMap. Read-only and Write-only properties will be ignored.
0 commit comments