如何在 Eclipse 项目中添加 Jface 支持?

发布于 2024-12-10 09:36:05 字数 182 浏览 0 评论 0原文

我是 Eclipse 环境的新手。

我有 Eclipse Indigo。
使用我通过安装新软件下载了以下内容:
Eclipse插件开发环境和
Eclipse RCP 插件开发人员资源

我创建了一个新的 Java 项目,在 java 构建路径库选项卡中单击“添加库”选择的插件依赖项,但列表为空。

I am new to Eclipse environment.

I have Eclipse Indigo.
Using I've downloaded the following via Install new Software:
Eclipse Plug-in Development Environment and
Eclipse RCP Plug-in Developer Resources

I created a new Java project, in java build path libraries tab I clicked on Add Library selected plugin dependencies but the list is empty.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

A君 2024-12-17 09:36:05

您有两种使用 JFace 的选择。您可以创建一个插件项目(而不是Java项目),然后可以在manifest.mf编辑器中使用插件依赖项。

但是,我相信您希望在独立的 Java 应用程序中使用 JFace。在这种情况下,您必须手动获取相应的jar文件,并将其添加到项目中,但不是作为插件依赖项,而是作为普通jar依赖项。有关后一种方法的详细信息,请检查 JFace wiki 页面: http://wiki.eclipse.org/JFace #Create_the_Eclipse_SWT.2FJFace_Project

You have two options to use JFace. You can either create a plug-in project (instead of Java project), and then you can use plug-in dependencies in the manifest.mf editor.

However, I believe, you want to use JFace in a standalone Java application. In this case you have to obtain the corresponding jar files manually, and add them to the project, but not as plug-in dependencies, but as normal jar dependencies. For details about this latter method check the JFace wiki page: http://wiki.eclipse.org/JFace#Create_the_Eclipse_SWT.2FJFace_Project

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