无法创建具有多页面编辑器的插件?
我想使用多页编辑器(eclipse RCP)。我想遵循这个 教程 但当我创建新项目时,我无法获得“带有多页面编辑器的插件”。我只有: 你好 有风景 有介绍 邮件模板
有谁知道如何在创建新的 RCP 项目时使用多页面编辑器获取选项插件吗? 谢谢
PS:我使用 Galileo 3.5.2
I would like to use multiple-page editor (eclipse RCP). I want to follow this tutorial
but I cannot get "plug-in with multiple page editor" when I create a new project. I have only :
Hello
with a view
with an introduction
mail template
Does anyone have an idea about how to get the option plug-in with multiple page editor when creating a new RCP project?
Thnx
PS: I use Galileo 3.5.2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请改用 Eclipse Indigo。
否则,您可以从空插件项目创建。
这是我的多页面编辑器的示例。 PropertyFileEditor 是多页编辑器。希望这会对您有所帮助。
FileDocumentProvider.java
FileEditor.java
FileEditorInput.java
PropertyFileEditor.java
Please use the Eclipse Indigo instead.
Otherwise, you can create from the empty plugin project.
Here is my example of multiple pages editor. PropertyFileEditor is multiple pages editor. Hope this will help you.
FileDocumentProvider.java
FileEditor.java
FileEditorInput.java
PropertyFileEditor.java
我无法告诉您这个模板在伽利略中是否可用。它位于靛蓝。
但此模板仅结合了您可以自己完成的两个步骤。创建一个空插件项目,打开 MANIFEST.MF 以打开插件编辑器并选择扩展选项卡。
在那里您可以添加编辑器和向导的扩展。
对于多页编辑器,单击“添加”,然后选择 org.eclipse.ui.editors。在对话框底部的模板区域中,选择多页编辑器。然后输入教程中所示的属性。
通过选择 org.eclipse.ui.newWizard 和新建文件向导模板,重复创建新向导。
I cannot tell you, if this template is available in Galileo. It is in Indigo.
But this template just combines two steps you can do on your own. Create an empty plugin project, open the MANIFEST.MF to open the plugin editor and select the extension tabs.
There you can add extension for editors and for wizards.
For a multipage editor click on Add, then select org.eclipse.ui.editors. In the template area at the bottom of the dialog select Multi-Page editor. Then enter the properties as show in your tutorial.
Repeat for the new wizard by selectin org.eclipse.ui.newWizard and the New File Wizard template.