eclipse rcp perspectiveExtension showInPart不可见

时间:2017-08-21 01:10:37

标签: eclipse-plugin eclipse-rcp

我希望我的ViewPart添加到Show In组。我添加了perspectiveExtension并在其下添加了showInPart,当我运行/调试我的插件时,我的视图没有出现在Show In上下文菜单组中。

以下是plugin.xml

中的扩展点
<extension
     point="org.eclipse.ui.perspectiveExtensions">
  <perspectiveExtension
        targetID="org.eclipse.jdt.ui.JavaPerspective">
     <showInPart
           id="com.ex.views.DebugView">
     </showInPart>
  </perspectiveExtension>
  <perspectiveExtension
        targetID="org.eclipse.ui.resourcePerspective">
     <showInPart
           id="com.ex.views.DebugView">
     </showInPart>
  </perspectiveExtension>
</extension> 

1 个答案:

答案 0 :(得分:0)

使用Eclipse 4.15(尽管可能还有4.x),我必须从一个新的工作区开始才能使更改生效。在调试Eclipse(在不干净/旧的工作空间中)时,所做的更改无效。