Back to project page cnp.
The source code is released under:
MIT License
If you think the Android project cnp 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.urucas.services; /*from ww w. ja va 2s. c o m*/ /** * @copyright Urucas * @license Copyright (C) 2013. All rights reserved * @version Release: 1.0.0 * @link http://urucas.com * @developers Bruno Alassia, Pamela Prosperi */ import org.json.JSONArray; import org.json.JSONObject; public interface JSONRequestTaskHandler { public void onSuccess(JSONObject result); public void onError(String message); }