如何在TableViewer中将选择设置为指定的索引?

时间:2012-10-15 04:45:27

标签: java eclipse-plugin eclipse-rcp

我的RCP应用程序TableViewer中有一个viewTableViewerList objects作为输入。是否可以使用我设置为selection的输入的List中对象的索引为特定对象创建TableViewer?例如,我想在每次打开应用程序时为第三个对象设置默认选择。如何设置该选择?

1 个答案:

答案 0 :(得分:9)

找到答案!

int selection = 5; //row we want to select
tableViewer.setSelection(new StructuredSelection(tableViewer.getElementAt(selection)),true);

感谢http://andy.ekiwi.de/?p=1040