javaProjects = new IJavaProject[] { fProject };
}
List<IType> types = new ArrayList<IType>();
for (IJavaProject project : javaProjects) {
AnnotationProcessor processor = new AnnotationProcessor(project);
Set<String> result = processor.getSubclassesForClass(fSuperclass);
IType type = getType(fSuperclass.getName(), project);
if (type != null) {
types.add(type);
}
for (String name : result) {