如何通过注释处理工具获取扩展界面?

时间:2019-03-08 07:37:50

标签: java annotation-processing

想要获取类的所有方法,包括扩展类的方法。

例如:

interface A{
  void a();
}

interface B extends A {
  void B();
}

我想通过Element获取方法a()和b()。

1 个答案:

答案 0 :(得分:1)

{{1}}