在plug-in.xml中如何将文件扩展名与eclipse插件中的特定类型编辑器关联

发布于 2024-10-22 03:34:18 字数 147 浏览 1 评论 0原文

我正在开发一个 Eclipse 插件,其中当扩展名为“.cert”的文件与某种类型的编辑器关联时,该编辑器的实现在 RateBuilderEditor.java 中? 我想,我必须在plugin.xml中提到这一点?我该如何实现这一目标?这个ExtensionPoint怎么写呢?

I'm developing an eclipse plug-in in which when files with extension ".cert" are to be associated with a certain kind of editor whose implementation is in RateBuilderEditor.java ?
I think, I have to mention this in plugin.xml ? How do I achieve this ? How to write this ExtensionPoint ?

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

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

发布评论

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

评论(1

暮凉 2024-10-29 03:34:19

干得好:

<extension point="org.eclipse.ui.editors">
  <editor
    class="[editor-impl-class]"
    default="true"
    filenames="*.cert"
    id="[some-id-or-use-impl-class]"
    name="My Custom Editor"
    icon="images/something.png"/>
</extension>

Here you go:

<extension point="org.eclipse.ui.editors">
  <editor
    class="[editor-impl-class]"
    default="true"
    filenames="*.cert"
    id="[some-id-or-use-impl-class]"
    name="My Custom Editor"
    icon="images/something.png"/>
</extension>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文