focus.addSelectionListener(new SelectionListener() {
public void widgetSelected(SelectionEvent event) {
String[] selection = list.getSelection();
if (selection != null && selection.length > 0) {
XPath path = new XPath("/@" + selection[0]);
System.out.println("XPath focus success = " +
ac.setFocus(path));
}
}