xml文件的上下文菜单中未显示新的命令条目

时间:2019-03-01 19:25:10

标签: java eclipse eclipse-plugin eclipse-rcp

我向插件添加了新命令。它应该显示文本标尺上下文菜单的条目。一切运行正常,除xml文件外,所有类型的文件均显示该文件。这是我的命令:

  <extension
     point="org.eclipse.ui.menus">
     <menuContribution
           locationURI="popup:#AbstractTextEditorContext?before=additions">
           <command
                 commandId="com.mycommand.test">
           </command>
     </menuContribution>  
</extension> 

  <command
        id="com.mycommand.test"
        defaultHandler="com.mycommand.test"
        name="This is my command">            
  </command>

一些图片:

其他类型的文件

Other kind of file

XML文件

XML file

非常感谢您的帮助。

0 个答案:

没有答案