2

我构建了一个 Eclipse RCP 应用程序,该应用程序configuration.xml在项目的根目录中使用了一些项目配置。我想自定义图标并保留默认的 xml 编辑器。我找到了一篇博客文章,这正是我正在寻找的property文件。我提取了它:

<extension point="org.eclipse.core.contenttype.contentTypes">
  <content-type base-type="org.eclipse.core.runtime.properties"
    file-extensions="config"
    id="in.cypal.eclipse.myConfig"
    name="My Config File"
    priority="normal">
  </content-type>
</extension>

<extension point="org.eclipse.ui.editors">
  <editor class="org.eclipse.jdt.internal.ui.propertiesfileeditor.PropertiesFileEditor"
    default="false"
    extensions="config"
    icon="icons/sample.gif"
    id="in.cypal.eclipse.editors.myConfigEditor"
    name="My Config Editor">
      <contentTypeBinding contentTypeId="in.cypal.eclipse.myConfig">
      </contentTypeBinding>
  </editor>
</extension>

我想我基本上需要将class元素的属性调整为editorEclipse中xml编辑器的实现。我安装了org.eclipse.wst.xml_ui.feature.feature.group. 我无法找到正确的实现。请帮忙:)谢谢!

4

1 回答 1

2

我可以解决我的问题,如果有人遇到同样的问题,这是我的解决方案。

 <extension
        point="org.eclipse.core.contenttype.contentTypes">
     <content-type
           base-type="org.eclipse.core.runtime.xml"
           file-names="configuration.xml"
           id="org.eclipse.core.runtime.xml.spl"
           name="Software Product Line Configuration"
           priority="normal">
     </content-type>
  </extension>
  <extension
        point="org.eclipse.ui.editors">
     <editor
           class="org.eclipse.wst.xml.ui.internal.tabletree.XMLMultiPageEditorPart"
           default="true"
           icon="icons/configuration.png"
           id="YOUR_ID"
           name="Software Product Line Configuration">
        <contentTypeBinding
              contentTypeId="org.eclipse.core.runtime.xml.spl">
        </contentTypeBinding>
     </editor>
  </extension>

我将包导入org.eclipse.wst.xml.ui到我的工作区,并查看了MANIFEST.MF文件中的扩展选项卡。扩展点org.eclipse.ui.editors只出现了一个。所以我在class属性中使用了实现并且它起作用了:)

编辑:如果我知道Eclipse Plugin Spy,这会更容易。所以,如果一个特性已经存在,只需使用神奇的快捷方式来找出实现细节:)

于 2012-07-14T13:35:14.723 回答