Package com.google.gwt.ajaxsearch.client.impl

Examples of com.google.gwt.ajaxsearch.client.impl.GSearchCompleteCallback


   * @param l The listener to add
   */
  public void addSearchListener(SearchListener l) {
    if (listeners == null) {
      listeners = new SearchListenerCollection();
      impl.setSearchCompleteCallback(this, null, new GSearchCompleteCallback() {
        public void onSearchResult() {
          for (Result result : getResults()) {
            listeners.fireResult(Search.this, result);
          }
        }
View Full Code Here

TOP

Related Classes of com.google.gwt.ajaxsearch.client.impl.GSearchCompleteCallback

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.