throws ClassFileNotFoundException {
CollectedInfo newInfo = info;
for (ClassInfo cls : newInfo.getParsed().values()) {
if (isAnalysisEnabled(type, AnalysisType.SUBTYPES.weight)) {
SubtypeInfo subtype = analyzeSubtype(cls, info);
if (subtype != null) {
if (subtype.getType().equals("InstructionFactory")) {
if (isAnalysisEnabled(type, AnalysisType.IFACTORIES.weight)) {
newInfo.register(subtype);
}
} else if (subtype.getType().equals("Listener")) {
if (isAnalysisEnabled(type, AnalysisType.LISTENERS.weight)) {
newInfo.register(subtype);
}
//-- add more else-if for each type whether you want to filter
// another subtype case.