使用 AST 添加另一个超级接口
我正在使用 AST 来修改源代码文件。现在我坚持解决一个特定的问题。我有一个接口,我们称之为 A:
public interface A extends A_Super{
(...)
}
现在我想添加另一个接口作为 AST 的超级接口,我们称之为 B。结果应该如下所示:
public interface A extends A_Super, B{
(...)
}
我看到有很多“Decleraton”类,即“MethodDeclaration”或“SingleVariableDeclaration”,但我找不到“ExtendsDeclaration”之类的东西。
我将不胜感激任何提示!
I'm using AST to modify source code files. Now I stick at a particular problem. I have an interface, lets call it A:
public interface A extends A_Super{
(...)
}
Now I want to add an other interface as super interface with AST, lets call it B. The result should look like this:
public interface A extends A_Super, B{
(...)
}
I saw that there are lots of 'Decleraton'-classes, i.e. 'MethodDeclaration' or 'SingleVariableDeclaration', but I could not find something like 'ExtendsDeclaration'.
I'd appreciate any hints!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
超级接口可以在类型声明(类和接口声明的联合)上找到。
请参阅TypeDeclaration.superInterfaceTypes()
Super interfaces can be found on the type declaration (union of class and interface declarations).
See TypeDeclaration.superInterfaceTypes()
这就是你所需要的。
here is what you need.