如何在 Eclipse 项目中添加 Jface 支持?
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有两种使用 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