aCats.add(aCat);
}
}
if (aCats.size() > 0) aEntry.setCategories(aCats);
SyndContent sDescription = sEntry.getDescription();
if (sDescription!=null) {
Content summary = new Content();
summary.setType(sDescription.getType());
summary.setValue(sDescription.getValue());
aEntry.setSummary(summary);
}
// take first item in contents collection as the content
List syndContents = sEntry.getContents();
if (syndContents != null && syndContents.size() > 0) {
SyndContent syndContent = (SyndContent)syndContents.get(0);
Content content = new Content();
content.setType(syndContent.getType());
content.setValue(syndContent.getValue());
aEntry.setSummary(content);
}
List authors = sEntry.getAuthors();
if (authors!=null && authors.size() > 0) {