6

在使用Generators创建类时,可以发现一个类型的所有子类。例如,您可以在 GWT Showcase 源代码中找到这种技术(参见完整代码):

JClassType cwType = null;
try {
  cwType = context.getTypeOracle().getType(ContentWidget.class.getName());
} catch (NotFoundException e) {
  logger.log(TreeLogger.ERROR, "Cannot find ContentWidget class", e);
  throw new UnableToCompleteException();
}
JClassType[] types = cwType.getSubtypes();

我想做类似的事情,但不是扩展一个类(或实现一个接口)

public class SomeWidget extends ContentWidget { ... }

,我也可以通过注释小部件来做到这一点吗?

@MyAnnotation(...)
public class SomeWidget extends Widget { ... }

然后找到所有用@MyAnnotation 注释的小部件?我找不到像这样的方法JAnnotationType.getAnnotatedTypes(),但也许我只是瞎了眼?

注意:我可以使用Google Reflections库使其工作reflections.getTypesAnnotatedWith(SomeAnnotation.class),但我更喜欢使用 GeneratorContext,特别是因为在 DevMode 中重新加载应用程序时它会更好。

4

1 回答 1

8

是的 - 最简单的方法是遍历所有类型,并检查它们的注释。您可能还有其他规则(公开的,非抽象的)也应该在那个时候完成。

for (JClassType type : oracle.getTypes()) {
  MyAnnotation annotation = type.getAnnotation(MyAnnotation.class);
  if (annotation != null && ...) {
    // handle this type
  }
}

TypeOracle可以从usingGeneratorContext获取实例context.getTypeOracle()

请注意,这只会让您访问源路径上的类型。也就是说,只有当前可用的类型基于被继承的模块和正在<source>使用的标签。

于 2012-05-09T18:43:45.917 回答