如何使用 eclipse 开发 JDT API 检索对象的包名称?
我需要获取类中声明的任何对象的源包。该对象可以声明为类变量或方法局部变量。
我可以使用 IFields API 找到类对象变量。
例如,如果变量的类型为 List ->我需要 java.util.List 形式的结果。
请给出您的想法。
提前致谢, 伊斯瓦尔
I need to get the source package of the any object declared in the class. This object may be declared as a class variable or methods local variable.
I can able to find that for class object variable using IFields API.
For example, if the variable is of type List -> I need the result as java.util.List.
Kindly give your ideas.
Thanks in advance,
Easwar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IProject 接口扩展了 IContainer,它具有多个 findMember 方法。您获取所有 IResource(Java 文件)并获取包名称...
注意:IResource 也是 Java 文件以外的资源
The IProject interface extends the IContainer which has several findMember methods. You get all IResource(Java files) and get package name ....
Note: IResource are resources other then Java files also