java.lang.NoClassDefFoundError:org / eclipse / ui / views / properties / IPropertySource

时间:2016-12-21 07:20:27

标签: eclipse-rcp eclipse-gef

我有一个需要显示“属性”选项卡的GEF插件。 我添加了IPropertySource接口并实现了它的方法。在实现IAdaptable的模型类中,包含了以下内容:

@Override
    public Object getAdapter(Class adapter) {
        if (adapter == IPropertySource.class) {
            propertySource = new ParentPropertySource(parent);
            return propertySource;
        }
        return null;

    }

我还在plugin.xml中的Dependencies中添加了“org.eclipse.ui.views” 但无法调试为什么会发生此运行时异常。

请指导。

0 个答案:

没有答案