171
I Use This!
Moderate Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 2 days ago.
May 15, 2023 — May 15, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Updates to allow getters and setters on List objects. Get code submitted by Arron Bates <[email protected]> More... over 22 years ago
Tests for List based getters and setters. More... over 22 years ago
Updates to note the deviance from the JavaBeans spec. More... over 22 years ago
Added my project to ignore list More... over 22 years ago
Here's bare-bones implementations of the DynaBean and DynaClass interfaces for us to start chewing over -- BasicDynaBean only implements simple properties at the moment (not indexed or mapped). More... over 22 years ago
Simplify the DynaClass method signatures to those required for immutable DynaClass implementations. For now, save the methods for a mutable implementation in a new interface (MutableDynaClass), but no guarantees that it will remain useful - mutability can be an implementation feature and may not need to be exposed formally in an interface at all. More... over 22 years ago
Remove the "converter" property from DynaClass -- based on discussions on the mailing list, it really doesn't belong here. More... over 22 years ago
Add "dynamic modified" and "dynamic read only" properties, as suggested by Bryan Field-Elliot <[email protected]>. The actual property names that I added include "dyna" in their names to reduce the potential for name clashes with actual dynamic property names used in a particular application. More... over 22 years ago
Add proposed interface and class definitions that correspond to the COMMONS-DEV mail message "[Design Discussion] DynaBeans - Round 2". More... over 22 years ago
Update version number to 1.3-dev for next round of development. More... over 22 years ago
Prepare for 1.2 release to provide a stable base for enhancements (especially dynamic beans and enhanced converters). Add release notes to document the (very few) changes since 1.1. More... over 22 years ago
added commons-collection jar in classpath of javadoc task to prevent warnings and better javadoc generation More... over 22 years ago
environmental values More... over 22 years ago
Add Robert as an author, since he did the refactoring. More... over 22 years ago
Extract the private methods used to find accessible method in PropertyUtils into a new MethodUtils class, making them public for general purpose use. Also add a corresponding JUnit test case. More... over 22 years ago
Make it possible to find accessible methods from interfaces implemented by superclasses of the bean class, not just interfaces implemented by the bean class itself. More... over 22 years ago
Modify the two-argument constructor so that read-only properties (i.e. those with only a "get" method but no "set" method) are recognized. More... over 22 years ago
Update version number for next round of development. More... over 22 years ago
Tweak version number for 1.1 release, and clean up Javadocs a bit. More... over 22 years ago
When flushing our caches of PropertyDescriptor() information, ask the Introspector class to flush its caches as well. More... over 22 years ago
Add BeanUtils.getMappedProperty() methods that are analogous to the existing BeanUtils.getIndexedProperty() methods. More... over 22 years ago
Change the descriptor caches to be keyed by the actual java.lang.Class instance of the bean, rather than the class name. This assures that the descriptors list for beans of the same name, but loaded by different class loaders, will be truly unique. More... over 22 years ago
Migrate fix from Struts 1.0 code base. PR: Struts bug #2494 Submitted by: Olav Reinert More... over 22 years ago
Make the caching of property descriptors (and mapped property descriptors) sensitive to the fact that the same fully qualified class name might be loaded from different class loaders. More... over 22 years ago
Correct property type returned by getMappedPropertyType() when it is not a String. More... over 22 years ago
Getters and setters for non-default conversion values need to be static. More... over 22 years ago
Add unit tests for indexed properties. Along the way, fix a bug where ArrayIndexOutOfBoundsException was being reported inconsistently depending on whether the underlying property was really an array or just had indexed getter and setter methods. More... over 22 years ago
Enhance beanutils to support "mapped" properties, in which a property refrence includes a String key in parentheses. The corresponding bean must have the following method signatures available: More... over 22 years ago
Back to version 1.1-dev. More... almost 23 years ago
Re-build 1.0 to fix a snafu in the MANIFEST.MF file. More... almost 23 years ago