171
I Use This!
Activity Not Available

Commits : Listings

Analyzed 12 months ago. based on code collected 12 months ago.
Jan 16, 2023 — Jan 16, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Fix 7333 by making BeanUtils explicitly depend on FastHashMap (from the commons-collections.jar file) as ConvertUtils and PropertyUtils. This means you will get the ClassNotFoundException immediately on your first reference to the BeanUtils class, instead of it potentially getting masked or ignored by BeanUtils methods that call ConvertUtils or PropertyUtils. More... almost 23 years ago
Last of the blanks More... almost 23 years ago
Fixed bug 7309 More... almost 23 years ago
Removed more blank lines More... almost 23 years ago
Remove blank lines More... almost 23 years ago
Fixed bug 7309 More... almost 23 years ago
Fixed javadoc breakiterator issues More... almost 23 years ago
Inspired by previous discussions on generalizing ConvertUtils, this patch makes the standard Converters used (for all the primitive types) completely pluggable, so there is no longer any concept of "custom converters". Now, you can replace how String->int conversions (for example) are done in your application. More... almost 23 years ago
Add the ability to register custom Converter instances for String->Object conversions performed by ConvertUtils.convert(Object, Class) and ConvertUtils.convert(Object[], Class). While this version works fine, I'm going to generalize it shortly by making all of the standard conversion methods into pluggable Converters, so you can replace (for example) the standard String->Integer converter if you want to. More... almost 23 years ago
In copyProperties(), skip write-only properties on the origin bean without throwing an exception. More... almost 23 years ago
Added trace logging to MethodUtils More... almost 23 years ago
Repair and enhance the BeanUtils.populate() method so that it supports the following functionality on indexed properties: * If the property name is specified in the Map without an index expression, the underlying regular property setter (as opposed to the indexed property setter) is called to replace the entire array. This fixes #6125. * If the property name is specified in the Map with an index expression, the corresponding element of the array is updated through the indexed property setter, instead of ignoring this Map entry entirely. More... almost 23 years ago
Fixed a bug that could result in a NullPointerException when an array contains a null value. More... almost 23 years ago
Added (the promised) invokeMethod methods which are like the invokeExactMethod methods but they invoke the first method with the given name that has compatible (rather than exacty matching) parameters. Also added test cases. Will be used in digester. More... almost 23 years ago
Parametrize home of commons-logging, instead of hardcoded "/java" More... almost 23 years ago
Added commons-logging to the sample - keeps it from being a surprise More... almost 23 years ago
Update to new LogFactory invocation mechanism for logging, and make some of the detailed messages happen at trace level rather than debug. More... almost 23 years ago
Deal with indexed setters where the property type is itself an array. More... almost 23 years ago
Scott missed a System.out -- but I'm *not* gonna fire him!!!! :-) More... almost 23 years ago
IDEA is happy to remove imports that it does not know about (such as when a particular jar is not in its classpath) More... almost 23 years ago
Updated formatting. No code was changed. Let me know if my settings are incorrect from the jakarta standard. More... almost 23 years ago
BeanUtils now uses logging. Added to build.xml, removed any System.out.println(), made some exception messages more informative. More... almost 23 years ago
Of course, you never catch the last HTML snafu until *after* a check-in ... More... almost 23 years ago
Add some basic User's Guide type documentation to the package JavaDocs. More... almost 23 years ago
Update copyright dates. More... almost 23 years ago
BeanUtils.populate() needed to become aware of DynaBean properties. More... almost 23 years ago
Remove a leftover debugging output, fix a JavaDoc comment. More... almost 23 years ago
Add "jar" and "install-jar" targets that support copying the JAR file to ${lib.repo}. More... almost 23 years ago
Convert capitalize() method to private in an attempt to avoid the compile warning that Jon sees (I don't see it with the Sun JDK compiler, so cannot verify that this really fixes the problem). More... almost 23 years ago
Fix cut-n-paste error. More... almost 23 years ago