Back to project page android-weather-demo-application.
The source code is released under:
GNU General Public License
If you think the Android project android-weather-demo-application 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 org.openweathermap.volley.callback; /*from www . j a v a 2 s . c om*/ import org.openweathermap.dto.base.IDTO; import com.android.volley.VolleyError; /** * The response of a VolleyRequest, any Activity that runs a request * must implement this interface to receive a response from Volly. * @author samkirton */ public interface VolleyResponseCallback { public void onVolleyResponse(IDTO dto); public void onVolleyError(VolleyError error); }