我构建了一个 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
元素的属性调整为editor
Eclipse中xml编辑器的实现。我安装了org.eclipse.wst.xml_ui.feature.feature.group
. 我无法找到正确的实现。请帮忙:)谢谢!