将方法/变量声明添加到 org.eclipse.jdt.core.dom.CompilationUnit
我正在尝试向 org.eclipse.jdt.core.dom.CompilationUnit 添加方法或变量声明,但我不知道如何实现这一点。
如果我使用 CompilationUnit.types().add(...) 该元素将作为同级元素添加,而不是作为子元素。
我现在确实搜索了很多,但我不相信这有什么大不了的。
感谢您的回答!
海因里希
i am trying to add method or variable declarations to org.eclipse.jdt.core.dom.CompilationUnit, but I can't figure out how to achieve that.
If I am using CompilationUnit.types().add(...) the element is added as a sibling, not as a child element.
I've really searched a lot now, but I don't believe it's such a big deal.
Thanks for your answers!
heinrich
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果上面的示例代码正确,那么您将把节点添加到类型列表中,而不是类型顶级类型中。
要添加到第一种类型,您应该使用
但是您应该考虑使用重写器来执行此操作,而不是直接修改 AST。
有关详细信息,请参阅
If you sample code above is correct you are adding your nodes to the list of types not to the type toplevel type.
To add to the first type you should use
However you should consider using a rewriter to perform this instead of modifying the AST directly.
For more info see