如何更新SWT表中特定行的数据

时间:2015-06-28 10:36:20

标签: java swt

如何更新TableItem SWT

中特定行索引中的Table

我加载一个充满数据的表,双击它以将它们加载到多个组件中,并希望将信息更新到同一行。

请有人帮助我。

2 个答案:

答案 0 :(得分:3)

更新行,请使用相应setText()的{​​{1}}和setImage()方法。

例如:

TableItem()

答案 1 :(得分:2)

使用

public TableItem(Table parent, int style, int index)

构造。这允许您指定新项目的行索引。

这假设您只使用TableTableItem而不是JFace TableViewer