Package com.google.gwt.search.client.KeepHandler

Examples of com.google.gwt.search.client.KeepHandler.KeepEvent


*/
@SuppressWarnings("serial")
class KeepHandlerCollection extends ArrayList<KeepHandler> {
  void fireKeep(SearchControl control, Result result) {
    UncaughtExceptionHandler handler = GWT.getUncaughtExceptionHandler();
    KeepEvent event = new KeepEvent(control, result);
    for (KeepHandler l : this) {
      if (handler != null) {
        try {
          l.onKeep(event);
        } catch (Throwable e) {
View Full Code Here

TOP

Related Classes of com.google.gwt.search.client.KeepHandler.KeepEvent

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.