* @param column the column for which to get the index of.
* @return the index of the specified item and of the specified column in the table.
* @since 1.3
*/
public int indexOf(final String item, final int column) {
return syncExec(new IntResult() {
public Integer run() {
TableItem[] items = widget.getItems();
for (int i = 0; i < items.length; i++) {
TableItem tableItem = items[i];
if (tableItem.getText(column).equals(item))