]
Hardy Ferentschik updated METAGEN-57:
-------------------------------------
Fix Version/s: 1.1.2.Final
Attributes are not generated for EmbeddedId and collections when the
mapping is defined in orm.xml mapping files
----------------------------------------------------------------------------------------------------------------
Key: METAGEN-57
URL:
http://opensource.atlassian.com/projects/hibernate/browse/METAGEN-57
Project: Hibernate Metamodel Generator
Issue Type: Bug
Affects Versions: 1.1.0.Final
Reporter: Rolf Thunbo
Assignee: Hardy Ferentschik
Fix For: 1.1.2.Final
To fix the collection problem l. 196 of XmlMetaEntity (in the getCollectionTypes
method):
if ( expectedElementKind.equals( elem.getKind() ) ) {
should be replaced by
if ( ! expectedElementKind.equals( elem.getKind() ) ) {
To fix the EmbeddedId problem the following code should be inserted at l. 332 of
XmlMetaEntity (in the parseAttributes method):
if ( attributes.getEmbeddedId() != null) {
EmbeddedId embeddedId = attributes.getEmbeddedId();
ElementKind elementKind = getElementKind( embeddedId.getAccess() );
String type = getType( embeddedId.getName(), null, elementKind );
if ( type != null ) {
attribute = new XmlMetaSingleAttribute( this, embeddedId.getName(), type );
members.add( attribute );
}
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: