DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23383>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23383 MappedPropertyDescriptor broken Summary: MappedPropertyDescriptor broken Product: Commons Version: unspecified Platform: All OS/Version: All Status: NEW Severity: Normal Priority: Other Component: Bean Utilities AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] When trying to create a MappedPropertyDescriptor for a mapped property with an "invalid" setter method, an IntrospectionException is thrown. E.g. I have a class with the methods: getProperty(String):Property setProperty(String, Value):void Since MappedPropertyDescriptor#findMethod(Class, String, int, Class[]) returns that "invalid" setter method MappedPropertyDescriptor#findMappedPropertyType fails. It would be nice for MappedPropertyDescriptor to ignore "invalid" setter methods. After some debugging I found that MappedPropertyDescriptor#internalFindMethod(Class, String, int, Class[]) calls MappedPropertyDescriptor#internalFindMethod(Class, String, int) for the class' interfaces. So it misses the parameter which specifies the method's argument classes. I think the way it's meant to be is to use MappedPropertyDescriptor#internalFindMethod(Class, String, int, Class[]) for that call, too. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
