configuration.xml
一部のプロジェクト構成でプロジェクトのルートでを使用するEclipseRCPアプリケーションを構築しました。アイコンをカスタマイズして、デフォルトのxmlエディターを維持したいと思います。私が探しているファイルを正確に実行するブログ投稿を1つ見つけました。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
。適切な実装を見つけることができません。助けてください:)ありがとう!