Permalink
Cannot retrieve contributors at this time
platypus-js/platypus-js-web-client/src/main/java/com/eas/client/xhr/ProgressHandlerAdapter.java /
Go to filepackage com.eas.client.xhr; | |
import com.google.gwt.xhr.client.XMLHttpRequest; | |
/** | |
* @author Le_404444 | |
* | |
*/ | |
public class ProgressHandlerAdapter implements ProgressHandler { | |
/* | |
* (non-Javadoc) | |
* | |
* @see | |
* com.google.gwt.xhr.client.ProgressChangeHandler#onLoadStart(com.google | |
* .gwt.xhr.client.XMLHttpRequest) | |
*/ | |
@Override | |
public void onLoadStart(XMLHttpRequest xhr) { | |
} | |
/* | |
* (non-Javadoc) | |
* | |
* @see | |
* com.google.gwt.xhr.client.ProgressChangeHandler#onProgress(com.google | |
* .gwt.xhr.client.XMLHttpRequest) | |
*/ | |
@Override | |
public void onProgress(ProgressEvent aEvent) { | |
} | |
/* | |
* (non-Javadoc) | |
* | |
* @see | |
* com.google.gwt.xhr.client.ProgressChangeHandler#onAbort(com.google.gwt | |
* .xhr.client.XMLHttpRequest) | |
*/ | |
@Override | |
public void onAbort(XMLHttpRequest xhr) { | |
} | |
/* | |
* (non-Javadoc) | |
* | |
* @see | |
* com.google.gwt.xhr.client.ProgressChangeHandler#onError(com.google.gwt | |
* .xhr.client.XMLHttpRequest) | |
*/ | |
@Override | |
public void onError(XMLHttpRequest xhr) { | |
} | |
/* | |
* (non-Javadoc) | |
* | |
* @see | |
* com.google.gwt.xhr.client.ProgressChangeHandler#onLoad(com.google.gwt | |
* .xhr.client.XMLHttpRequest) | |
*/ | |
@Override | |
public void onLoad(XMLHttpRequest xhr) { | |
} | |
/* | |
* (non-Javadoc) | |
* | |
* @see | |
* com.google.gwt.xhr.client.ProgressChangeHandler#onTimeOut(com.google. | |
* gwt.xhr.client.XMLHttpRequest) | |
*/ | |
@Override | |
public void onTimeOut(XMLHttpRequest xhr) { | |
} | |
/* | |
* (non-Javadoc) | |
* | |
* @see | |
* com.google.gwt.xhr.client.ProgressChangeHandler#onLoadEnd(com.google. | |
* gwt.xhr.client.XMLHttpRequest) | |
*/ | |
@Override | |
public void onLoadEnd(XMLHttpRequest xhr) { | |
} | |
} |