2011-03-15 27 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。沒有解決,因爲缺乏時間,缺少優秀和專注的教程。

回答

相關問題