return getText();
}
int columnCount = new SWTBotTree(tree).columnCount();
Assert.isLegal(column < columnCount, java.text.MessageFormat.format(
"The column index ({0}) is more than the number of column({1}) in the tree.", column, columnCount)); //$NON-NLS-1$
return syncExec(new StringResult() {
public String run() {
return widget.getText(column);
}
});
}