2011-03-15 52 views
1

我刚刚开始使用Eclipse RCP。 我使用TableViewer和WritableList创建Eclipse RCP View以从其他线程获取数据。 但我看不到任何更改。我只需要显示其他线程正在管理的List的内容。如何将Eclipse RCP表视图绑定到其他线程数据

public class View extends ViewPart { 
private TableViewer viewer; 
private WritableList input; 

我还可以得到错误,

org.eclipse.core.runtime.AssertionFailedException: assertion failed: Getter called outside realm of observable org.eclipse.core.databinding.observable.list.WritableList 

我知道什么是UI线程。我只是不知道该怎么写。请帮助举例。

UPDATE。没有解决,因为缺乏时间,缺少优秀和专注的教程。

回答

相关问题