Back to project page Joetz-Android-V2.
The source code is released under:
GNU General Public License
If you think the Android project Joetz-Android-V2 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.example.jens.myapplication.apimanager; //from ww w .j av a2s . co m /** * A simple request task, to be called when a request is finished (usually included in * calls to Manager classes) */ public interface SimpleRequestTask { /** * Executed AFTER the request has returned the responseBody and the json is parsed. * @param statusCode statusCode returned by the response */ public void doTask(int statusCode); }