标签: java annotation-processing
想要获取类的所有方法,包括扩展类的方法。
例如:
interface A{ void a(); } interface B extends A { void B(); }
我想通过Element获取方法a()和b()。
答案 0 :(得分:1)
{{1}}