使用 Eclipse JDT - 这必须来自插件吗?

发布于 2024-11-18 17:19:40 字数 128 浏览 4 评论 0原文

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

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

发布评论

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

评论(1

菩提树下叶撕阳。 2024-11-25 17:19:40

所有 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 possibly plugin.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?

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