OPENJPA-2305: Restore the inheritance hierarchy of the generated canonical metamodel to that of the domain model due to spec compliance, but flatten the attributes so that an inherited attribute uses generic parameter of owning class type instead of the declared supertype

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1451369 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Pinaki Poddar 2013-02-28 21:46:54 +00:00
parent 326fcd7a4c
commit ecd1246c80
1 changed files with 4 additions and 0 deletions

View File

@ -240,6 +240,10 @@ public class AnnotationProcessor6 extends AbstractProcessor {
SourceCode.Class modelClass = source.getTopLevelClass();
Set<Element> members = handler.getPersistentMembers(e);
TypeElement supCls = handler.getPersistentSupertype(e);
if (supCls != null) {
String superName = factory.getMetaModelClassName(supCls.toString());
source.getTopLevelClass().setSuper(superName);
}
while (supCls != null) {
members.addAll(handler.getPersistentMembers(supCls));
supCls = handler.getPersistentSupertype(supCls);