net.sf.j2s.ajax
Interface IXHRCallback

All Known Implementing Classes:
XHRCallbackAdapter, XHRCallbackSWTAdapter

public interface IXHRCallback

Interface of XMLHttpRequest callback.

Author:
josson smith 2006-2-11

Method Summary
 void onComplete()
          Method will be called when XMLHttpRequest receives all reponses.
 void onInteractive()
          Method will be called when XMLHttpRequest is transforming request and receiving response.
 void onLoaded()
          Method will be called when XMLHttpRequest already setup HTTP connection.
 void onLoading()
          Method will be called when XMLHttpRequest is loading.
 

Method Detail

onLoading

public void onLoading()
Method will be called when XMLHttpRequest is loading.


onLoaded

public void onLoaded()
Method will be called when XMLHttpRequest already setup HTTP connection.


onInteractive

public void onInteractive()
Method will be called when XMLHttpRequest is transforming request and receiving response.


onComplete

public void onComplete()
Method will be called when XMLHttpRequest receives all reponses.