eclipse rcp更改xml配置文件的图标

时间:2012-07-14 10:52:37

标签: xml eclipse icons rcp

我构建了一个Eclipse RCP应用程序,它使用项目根目录中的configuration.xml来进行某些项目配置。我想自定义图标并保留默认的xml编辑器。我找到了一个博客post,它正是我正在寻找的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元素的属性editor调整为Eclipse中xml编辑器的实现。我安装了org.eclipse.wst.xml_ui.feature.feature.group。我找不到合适的实施方案。请帮忙:)谢谢!

1 个答案:

答案 0 :(得分: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文件中的Extension选项卡。扩展点org.eclipse.ui.editors只出现了一个。所以我使用了class属性中的实现,并且它有效:)

修改:如果我知道Eclipse Plugin Spy,那会更容易。因此,如果某个功能已经存在,只需使用神奇的快捷方式来确定实现细节:)