插件开发为Java透视图贡献新建向导时的一个bug(org.eclipse.ui.perspectiveExtensions)

有前同事问到,想在新建向导中添加一个右键菜单,可能是这样:
 
 
这种需求通过org.eclipse.ui.perspectiveExtensions扩展点就能办到。eg:
step1:实现org.eclipse.ui.newWizards向导
 <extension
         point="org.eclipse.ui.newWizards">
      <category
            id="CreateType"
            name="Sample Wizards">
      </category>
      <wizard
            category="CreateType"
            class="createtype.wizards.SampleNewWizard"
            icon="icons/sample.gif"
            id="createtype.wizards.SampleNewWizard11"
            name="我的新建向导菜单">
      </wizard>
   </extension>

 
step2:扩展org.eclipse.ui.perspectiveExtensions。
 <extension
         point="org.eclipse.ui.perspectiveExtensions">
     <perspectiveExtension
            targetID="org.eclipse.jdt.ui.JavaPerspective">
         <newWizardShortcut
               id="createtype.wizards.SampleNewWizard11">
         </newWizardShortcut>
     </perspectiveExtension>
  </extension>

说明:targetID为java透视图的id
<newWizardShortcut  id="createtype.wizards.SampleNewWizard11">   </newWizardShortcut>里面的id为我们要添加到new新建菜单下的新建向导的id
 
小bug为:run或debug时,并没有显示出来。清除一下缓存(Run Configurations--->Clear Workspace Data),就显示出来了。不知道这是不是pde的一个bug。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值