在PackageExplorer和ProjectExplorer中显示" New"菜单中的子菜单项

时间:2014-08-04 06:10:57

标签: eclipse eclipse-plugin

在Eclipse plugin.xml中,如何使New Menu中的子菜单不仅可以在项目浏览器中显示,还可以在包浏览器中显示。

我的源代码是......

  <extension
     point="org.eclipse.ui.menus">
     <menuContribution
        allPopups="true"
        locationURI="popup:common.new.menu?after=additions">
          <command
           commandId="org.eclipse.ui.newWizard"
           icon="icons/schema-file_16x16.png"
           label="%schemaFile.command.label"
           style="push">             
         </command>    
      </menu>
  </extension>

但是这个子菜单只能在ProjectExplorer中看到,但不能在PackageExplorer中看到。 如何在包和项目中可见。如果有人知道该代码,请与我分享。

0 个答案:

没有答案