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 w w w. j av a 2 s . co m import java.util.List; import blogr.vpm.fr.blogr.bean.Post; /** * Created by vincent on 08/10/14. */ public interface PostRetriever { /** * Retrieves all persisted blog posts * * @return the list of persisted posts */ List<Post> retrieveAll(); }