Back to project page PetBook.
The source code is released under:
MIT License
If you think the Android project PetBook 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.edinubuntu.petlove.model; /*from w w w .j ava2 s . c om*/ import com.loopj.android.http.AsyncHttpResponseHandler; /** * Created by edward_chiang on 13/10/3. */ public abstract class AsyncModel { private boolean loading; public abstract void load(AsyncHttpResponseHandler responseHandler); public boolean isLoading() { return loading; } public void setLoading(boolean loading) { this.loading = loading; } }