使用 Eclipse JDT - 这必须来自插件吗?
我正在使用 Eclipse 的 JDT 工具构建一些代码 - 我正在使用 JDT Core 组件。但是,我似乎只能使用插件中的 JDT Core 组件构建代码。我希望能够从常规 java 项目访问 JDT Core 组件中的一些类。这可能吗?
I am building out some code using Eclipse's JDT tools - I'm using JDT Core component. However, It seems that I can only build out code using the JDT Core component within a plugin. I was hoping to maybe access some of the classes from the JDT Core component from a regular java project. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所有 JDT 组件/插件都依赖于 Eclipse 框架,因此,通过扩展,您编写的任何代码都将依赖于 Eclipse 框架和运行时。因此,您的代码必须采用插件的形式。
将常规 Java 项目转换为 Eclipse 插件相当简单。您只需要
META-INF/MANIFEST.MF
(或您所拥有的扩展)以及可能的plugin.xml
。但是...为什么您首先想要一个常规的 Java 项目而不是一个插件?除了提到的文件之外,您预计还会有什么差异?
All the JDT components/plug-ins depends on the Eclipse framework and therefore - by extension - will any code you write depend on the Eclipse framework and runtime. Thus, your code must be in the form of a plug-in.
Converting a regular Java project into a Eclipse plug-in is rather simple. You just need
META-INF/MANIFEST.MF
(or an extension of the one you have) and possiblyplugin.xml
.But... why do you want a regular Java project in the first place rather than a plug-in? What differences do you expect - apart from the mentioned files?