Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Eclipse 插件开发的新手:我需要检索用户选择的 java 项目的一些信息,例如:
我的插件必须将 java 项目显示为图形并计算一些指标......但我不熟悉 Eclipse API
在 Javadoc 中搜索 IProject、IContainer、IFolder、IFile 和 IWorkspaceRoot 类。这些课程共同协作,为您提供所需的大部分信息。
在 org.eclipse.jdt.core 插件中查看 ASTParser,它可以获取一些 Java 源代码并返回一个解析树,您可以在其中找到所有方法、变量等。