Back to project page tpblogr.
The source code is released under:
MIT License
If you think the Android project tpblogr 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 blogr.vpm.fr.blogr.persistence; //from ww w .j av a 2s . co m import java.io.IOException; import java.util.List; import blogr.vpm.fr.blogr.bean.Blog; /** * Created by vince on 01/12/14. */ public interface BlogRetriever { /** * Retrieves all persisted blogs * * @return the list of persisted blogs */ List<Blog> retrieveAll() throws IOException; }