Added method to suggest box so that suggestions can be programmatically refreshed.

Review by: jlabanca@google.com

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@10932 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/user/client/ui/SuggestBox.java b/user/src/com/google/gwt/user/client/ui/SuggestBox.java
index 8f72305..7fad380 100644
--- a/user/src/com/google/gwt/user/client/ui/SuggestBox.java
+++ b/user/src/com/google/gwt/user/client/ui/SuggestBox.java
@@ -939,6 +939,15 @@
   }
 
   /**
+   * Refreshes the current list of suggestions.
+   */
+  public void refreshSuggestionList() {
+    if (isAttached()) {
+      refreshSuggestions();
+    }
+  }
+
+  /**
    * @deprecated Use the {@link HandlerRegistration#removeHandler} method on the
    *             object returned by {@link #getTextBox}().addChangeHandler
    *             instead