我建立一个使用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
。 我没能找到合适的实现。 请帮助:)谢谢!