如何为我的 RCP 应用程序使用现有的文本编辑器?
对于 voegella.de 的示例,我只想使用内置文本编辑器来编辑人名。我只是想学习如何使用这个插件中的文本编辑器:org.eclipse.ui.workbench.texteditor
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
对于 voegella.de 的示例,我只想使用内置文本编辑器来编辑人名。我只是想学习如何使用这个插件中的文本编辑器:org.eclipse.ui.workbench.texteditor
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可以通过包含 org.eclipse.ui.editors 插件(以及它的所有依赖项)。您还可以从您提到的插件中继承
org.eclipse.ui.texteditor.AbstractTextEditor
。有关使用平台文本编辑器的信息,请访问 http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/editors_jface.htm您还应该查看<一href="http://www.eclipse.org/articles/" rel="nofollow">http://www.eclipse.org/articles/ 以及 http://wiki.eclipse.org/The_Official_Eclipse_FAQs#Implementing_Support_for_Your_Own_Language
You can use the default text editor
org.eclipse.ui.editors.text.TextEditor
in your own RCP apps by including the org.eclipse.ui.editors plugin (and all of its dependencies). You can also subclassorg.eclipse.ui.texteditor.AbstractTextEditor
from the plugin that you mentioned. Information on working with the platform text editors is available at http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/editors_jface.htmYou should also check out http://www.eclipse.org/articles/ and information in the section http://wiki.eclipse.org/The_Official_Eclipse_FAQs#Implementing_Support_for_Your_Own_Language