introduce ClassHierarchyDweller

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@517 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2006-12-21 19:03:57 +00:00
parent 59f5f9d69e
commit 4ab4d5edfb
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ public class J2EEClassTargetSelector implements ClassTargetSelector {
if (metaData.isContainerManaged(realRef) || metaData.isEJBInterface(realRef)) {
if (realType.isAbstract() || realType.isInterface()) {
TypeName syntheticName = BypassSyntheticClass.getName(realRef);
IClass result = bypassLoader.lookupClass(syntheticName);
IClass result = bypassLoader.lookupClass(syntheticName, realType.getClassHierarchy());
if (result != null) {
return result;
} else {