BaseAsyncCallback.java :  » UnTagged » alaus-radaras » alaus » radaras » client » Android Open Source

Android Open Source » UnTagged » alaus radaras 
alaus radaras » alaus » radaras » client » BaseAsyncCallback.java
/**
 * 
 */
package alaus.radaras.client;

import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.rpc.AsyncCallback;

/**
 * @author Vincentas Vienozinskis
 *
 */
public abstract class BaseAsyncCallback<T> implements AsyncCallback<T> {

  @Override
  public void onFailure(Throwable caught) {
    Window.alert(caught.toString());    
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.