我在RCP应用程序的view中有一个TableViewer。TableViewer有一个objects的List作为输入。是否可以使用List中对象的索引(我将其设置为TableViewer的输入)为特定对象创建一个selection?例如,我想在每次打开应用程序时将第三个对象设置为默认选择。如何设置该选择?
view
TableViewer
objects
List
selection
ycggw6v21#
找到答案了!
int selection = 5; //row we want to select tableViewer.setSelection(new StructuredSelection(tableViewer.getElementAt(selection)),true);
多亏了http://andy.ekiwi.de/?p=1040。
1条答案
按热度按时间ycggw6v21#
找到答案了!
多亏了http://andy.ekiwi.de/?p=1040。