我已经从使用NetBeans迁移到Eclipse。
因为我已经从使用:
开始,因此像下面这样的行不起作用JTable到SWT表
如何修改此行代码以适用于SWT表:
jTable1.setValueAt(v.getDate(), nCount+1, 0);
答案 0 :(得分:3)
假设您刚刚使用public static T[] Add<T>(this T[] target, T item)
{
if (target == null)
{
//TODO: Return null or throw ArgumentNullException;
}
T[] result = new T[target.Length + 1];
target.CopyTo(result, 0);
result[target.Length] = item;
return result;
}
(而不是JFace Table
),您可以使用:
TableViewer
如果您使用多个列:
TableItem item = table.getItem(row);
item.setText("text");