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 ww w . j av a2 s . c o m import com.activeandroid.Model; import com.edinubuntu.petlove.model.AsyncModel; /** * Created by edward_chiang on 13/10/3. */ public interface ActiveObjectsLoader<T extends Model> { public java.util.List<T> selectObjects(boolean more); public void loadObjects(AsyncModel asyncModel, boolean more); public void refreshObjectsToViews(java.util.List<T> object); }