Eclipse插件:xx.ui无法找到* TabGroup

时间:2015-12-17 16:15:50

标签: eclipse eclipse-plugin

我正在编写2个eclipse插件:xx.launching和xx.ui

我写了一个自定义调试配置。当我打开调试配置管理器时,我可以看到我的新配置“MyConfiguration”。但是当我尝试添加MyConfiguration的新配置时,我收到错误:

插件xx.ui无法加载类xx.ui.launcher.MyApplicationTabGroup

在我的插件xx.launching和xx.ui的plugin.xml中,我有以下几行:

xx.launching

>perl -E"say pack 'b8', sprintf '%08b', 178"
M

xx.ui

   <extension
         point="org.eclipse.debug.core.launchConfigurationTypes">
      <launchConfigurationType
            delegate="xx.launching.MyApplicationLaunchConfigurationDelegate"
            id="xx.launching.MyApplication"
            modes="debug"
            ...>
      </launchConfigurationType>
      ...
   </extension>

类xx.ui.launcher.MyApplicationTabGroup确实存在

我真的可以在Debug Configurations列表中看到这个图标

我错了什么?

非常感谢提前!

0 个答案:

没有答案