final Description desc = item.getDescription();
syndEntry.setComments(item.getComments());
if (desc != null) {
final SyndContent descContent = new SyndContentImpl();
descContent.setType(desc.getType());
descContent.setValue(desc.getValue());
syndEntry.setDescription(descContent);
}
final Content cont = item.getContent();
if (cont != null) {
final SyndContent content = new SyndContentImpl();
content.setType(cont.getType());
content.setValue(cont.getValue());
final List<SyndContent> syndContents = new ArrayList<SyndContent>();
syndContents.add(content);
syndEntry.setContents(syndContents);
}