cn.mapway.document.ui.client.rpc.IOnData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapway-doc-ui Show documentation
Show all versions of mapway-doc-ui Show documentation
auto gen doc from api with ui
package cn.mapway.document.ui.client.rpc;
// TODO: Auto-generated Javadoc
/**
* The Interface IOnData.
*
* @param the generic type
*/
public interface IOnData {
/**
* On error.
*
* @param url the url
* @param error the error
*/
public void onError(String url,String error);
/**
* On success.
*
* @param url the url
* @param data the data
*/
public void onSuccess(String url,T data);
}