如何使用 eclipse 开发 JDT API 检索对象的包名称?

发布于 2024-11-16 23:23:28 字数 171 浏览 4 评论 0原文

我需要获取类中声明的任何对象的源包。该对象可以声明为类变量或方法局部变量。

我可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

缱倦旧时光 2024-11-23 23:23:29

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文