我的RCP应用程序TableViewer
中有一个view
。 TableViewer
有List
objects
作为输入。是否可以使用我设置为selection
的输入的List中对象的索引为特定对象创建TableViewer
?例如,我想在每次打开应用程序时为第三个对象设置默认选择。如何设置该选择?
答案 0 :(得分:9)
找到答案!
int selection = 5; //row we want to select
tableViewer.setSelection(new StructuredSelection(tableViewer.getElementAt(selection)),true);