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.active; //from w w w .j av a2s.co m import com.activeandroid.Model; import com.edinubuntu.petlove.model.AsyncModel; /** * Created by edward_chiang on 13/10/3. */ public interface ActiveObjectLoader<T extends Model> { public T selectObject(); public void loadObject(AsyncModel asyncModel); public void refreshObjectToViews(T object); }