t.setWidget(0, 0, box);
Button showSuggestions = new Button(
"show suggestions, then hide after 2 seconds", new ClickHandler() {
public void onClick(ClickEvent event) {
box.showSuggestionList();
new Timer() {
@Override
public void run() {
box.hideSuggestionList();