Message:
The following issue has been reopened.
Reopener: Max Rydahl Andersen
Date: Sun, 14 Dec 2003 4:50 AM
It's close, but now it fails when the Component tries to get the getters and setters in Binder around:
Class clazz = model.getComponentClass();
Getter[] getters = new Getter[span];
Setter[] setters = new Setter[span];
iter = model.getPropertyIterator();
boolean foundCustomAccessor=false;
i=0;
while ( iter.hasNext() ) {
Property prop = (Property) iter.next();
setters[i] = prop.getSetter(clazz);
getters[i] = prop.getGetter(clazz);
if ( !prop.isBasicPropertyAccessor() ) foundCustomAccessor = true;
i++;
}
This stuff should be "moved" somewhere else ;) ...
---------------------------------------------------------------------
View the issue:
http://opensource.atlassian.com/projects/hibernate/secure/ViewIssue.jspa?key=HB-549
Here is an overview of the issue:
---------------------------------------------------------------------
Key: HB-549
Summary: Binder ignores class attribute and loads class when parsing Component's
Type: Bug
Status: Reopened
Priority: Major
Project: Hibernate2
Components:
core
Versions:
2.2 alpha
Assignee: Gavin King
Reporter: Max Rydahl Andersen
Created: Sat, 13 Dec 2003 2:56 PM
Updated: Sun, 14 Dec 2003 4:50 AM
Description:
see summary ;)
---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.
If you think it was sent incorrectly contact one of the administrators:
http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
If you want more information on JIRA, or have a bug to report see:
http://www.atlassian.com/software/jira
|