mirror of https://github.com/apache/openjpa.git
Record interface superclasses
git-svn-id: https://svn.apache.org/repos/asf/incubator/openjpa/trunk@442494 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1e95734015
commit
2dfe77f2ca
|
@ -888,6 +888,14 @@ public class MetaDataRepository
|
||||||
_ifaces.put(meta.getDescribedType(), impl);
|
_ifaces.put(meta.getDescribedType(), impl);
|
||||||
_metas.put(impl, meta);
|
_metas.put(impl, meta);
|
||||||
addDeclaredInterfaceImpl(meta, meta.getDescribedType());
|
addDeclaredInterfaceImpl(meta, meta.getDescribedType());
|
||||||
|
ClassMetaData sup = meta.getPCSuperclassMetaData();
|
||||||
|
while (sup != null) {
|
||||||
|
// record superclass interface info while we can as well as we
|
||||||
|
// will only register concrete superclass in PCRegistry
|
||||||
|
sup.clearSubclassCache();
|
||||||
|
addToCollection(_subs, sup.getDescribedType(), impl, true);
|
||||||
|
sup = (ClassMetaData) sup.getPCSuperclassMetaData();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized InterfaceImplGenerator getImplGenerator() {
|
synchronized InterfaceImplGenerator getImplGenerator() {
|
||||||
|
|
Loading…
Reference in New Issue