use of com.jopdesign.common.type.ArrayTypeInfo in project jop by jop-devel.
the class UsedCodeFinder method getClassInfo.
private ClassInfo getClassInfo(MemberID sig) {
String className;
if (sig.isArrayClass()) {
ArrayTypeInfo at = ArrayTypeInfo.parse(sig.getClassName());
if (at.getElementType() instanceof ObjectTypeInfo) {
className = ((ObjectTypeInfo) at.getElementType()).getClassRef().getClassName();
} else {
return null;
}
} else {
className = sig.getClassName();
}
ClassInfo classInfo = appInfo.getClassInfo(className);
if (classInfo == null) {
ignoreClass(className);
}
return classInfo;
}
Aggregations