* @param items the items to select.
* @return this same instance.
*/
public SWTBotTree select(final String[] items) {
checkEnabled();
asyncExec(new VoidResult() {
public void run() {
TreeItem[] treeItems = getControl().getItems();
List selection = new ArrayList();
for (int i = 0; i < treeItems.length; i++) {
TreeItem treeItem = treeItems[i];