我有一个需要显示“属性”选项卡的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” 但无法调试为什么会发生此运行时异常。
请指导。