Back to project page visiting-card-android.
The source code is released under:
GNU General Public License
If you think the Android project visiting-card-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.matrix.visitingcard.http; /* ww w . ja v a 2 s .c om*/ import org.json.JSONArray; import org.json.JSONObject; public interface ProgressJSONResponseCallBack { public void onAsyncStart(); public void onAsyncFinish(); public void onAsyncSuccess(JSONArray jsonArray); public void onAsyncSuccess(JSONObject jsonObject); public void onAsyncFailure(int status, String string); public void onAsyncFailure(int status, JSONObject jsonObject); }