我有默认的PropertySheet,它运行良好,但我想为每个单元格添加工具提示。
我是否只想添加工具提示,我认为我不需要覆盖很多东西。只需扩展实际视图,获取TableViewer并应用工具提示。
所以我创建了一个新类:
public class RunnerPropertyView extends PropertySheet {
@Override
public void createPartControl(Composite parent) {
super.createPartControl(parent);
//TODO: get the existing TableViewer
// apply the tooltip
}
}
要应用工具提示,我想我可以关注this approach。
我的问题是如何从parent
对象或PropertySheet本身(this
)获取现有的TableViewer。
这可能吗?在我的理解中它应该是。 TableViewer实例必须在某处。只需知道要做的方法和/或演员......