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.asynctask.base; /* www .ja v a 2 s. co m*/ /** * The response of an AsyncTask * @author samkirton */ public abstract class BaseResponse { private boolean mIsValid; public boolean isValid() { return mIsValid; } public void setIsValid(boolean newVal) { mIsValid = newVal; } }