use of com.rometools.rome.feed.atom.Content in project wombat by PLOS.
the class ArticleFeedView method buildAtomContents.
private List<Content> buildAtomContents(Map<String, ?> article) {
Content content = new Content();
content.setType("html");
content.setValue(getContentText(article));
return ImmutableList.of(content);
}
Aggregations