Eclipse视图描述符已删除

时间:2017-07-19 19:18:51

标签: eclipse eclipse-plugin

我有一个带有一些自定义视图的eclipse插件项目,但最近每个视图在运行时都有错误:

 !ENTRY org.eclipse.e4.ui.workbench 2 0 2017-07-19 20:24:24.597
 !MESSAGE Removing part descriptor with the 'com.test.ResourceChanges' id and the 'Resource Changes' description. Points to the invalid 'bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView' class.

我将代码与示例视图中的几乎为空的示例进行了比较,其中可以显示视图,并且所有代码看起来都很好。此外,其他依赖项目运作良好 另一方面,示例视图在项目中也不起作用。

示例plugin.xml条目:

<extension point="org.eclipse.ui.views">
    <view allowMultiple="false" category="com.test.category" class="com.test.ResourceChangesView" icon="icons/Icon.png" id="com.test.ResourceChanges" name="Resource Changes" restorable="true">
    </view>
    <category id="com.test.category" name="Changes"></category>
</extension>

视图扩展了org.eclipse.ui.part.ViewPart,但正如我所说,即使是空视图也不会注册。

0 个答案:

没有答案