JDT ASTParser 获取字符串字段的值
有没有办法使用 jdt ASTParser 来获取 java 文件中声明的 String 字段的值。实际上我需要的是解决来自其他类的任何可能的依赖关系,例如
公共字符串str =“somethig”+SomeTherClass.SOMETHING_ELSE。
Is there a way to use jdt ASTParser to get the value of a String field declared in a java file. Actually what I need is to resolve any possible dependencies from other classes e.g.
public String str = "somethig"+SomeTherClass.SOMETHING_ELSE.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现了......实际上非常简单......代码如下:
然后在 ASTVisitor 的实现中,您需要在被访问的节点上调用resolveConstantExpressionValue()。
I figured it out ...it was quite simple actually ..here's the code:
Then in your implementation of the ASTVisitor you need to call resolveConstantExpressionValue() on the node being visited.