我如何使用“org.eclipse.debug.ui.launchShortcuts”?

时间:2012-05-14 23:52:05

标签: eclipse-plugin eclipse-pde

我在Eclipse中编写了一个自定义启动器,我可以通过工具栏上的“运行方式”和“调试为”菜单选项进行访问。我还希望能够通过包浏览器启动,并通过右键单击要启动的文件的编辑器。我按照教程here添加了快捷方式,但没有任何反应,它没有输入我的处理代码,也没有抱怨扩展点的配置。

以下是我plugin.xml

的摘录
<extension point="org.eclipse.debug.ui.launchShortcuts">
  <shortcut
        id     = "org.mylauncher.launchCalcShortcut"
        class  = "org.mylauncher.LaunchCalcShortcut"
        description="Execute calculations"
        icon="icons/launch_16_16.png"
        label="Calculate"
        modes="run, debug" >
        <configurationType id="org.mylauncher.launchCalc"/>
  </shortcut>

我还玩过删除(可选)图标属性,并单独验证了图标的路径。

我一直在修改这个配置几个小时没有好结果,因为它根本没有在我自己的代码中运行而无法进行调试。

感谢。

1 个答案:

答案 0 :(得分:4)

似乎这个问题的正确答案是指定上下文启动快捷方式。这是我的工作配置:

   <extension
     point="org.eclipse.debug.ui.launchShortcuts">

  <shortcut
        class="com.xxxx.CalcLaunchShortcut"
        icon="calc.png"
        id="com.xxxx.CalcLaunchShortcut"
        label="Calc"
        modes="run, debug">
    <contextualLaunch>
         <contextLabel mode="run" label="Run Calculator" />
         <contextLabel mode="debug" label="Debug Calculator" />
         <enablement >
           <with variable="selection">
           <count value="1"/>
          <iterate>
            <adapt type="org.eclipse.core.resources.IResource">
                <and>
                <test property="org.eclipse.core.resources.name" value="*.calc"/>
            </and>
        </adapt>
          </iterate>
           </with>
       </enablement>
     </contextualLaunch>
  </shortcut>