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.publish; //from w ww . ja va 2s . c o m import blogr.vpm.fr.blogr.bean.Blog; import blogr.vpm.fr.blogr.bean.Post; /** * Created by vincent on 29/08/14. * <p/> * Interface for the publication of a blog post. Any blog post is posted on one blog. */ public interface PostPublisher { /** * Publishes the post on the blog. * * @param blog the blog to publish on * @param post the post to publish */ void publish(Blog blog, Post post); /** * Overrides the default formatter for this publisher * * @param formatter the formatter to use when publishing */ void setFormatter(Formatter formatter); }