}
if (getDescription() != null) {
syndEntry.setSummary(new SyndText(getDescription()));
}
if (getAuthor() != null) {
SyndPerson syndAuthor = new SyndPerson();
String authorEmail = getAuthor();
syndAuthor.setEmail(authorEmail);
syndAuthor.setName(authorEmail.substring(0, authorEmail.indexOf("@"))); //$NON-NLS-1$
syndEntry.getAuthors().add(syndAuthor);
}
syndEntry.getCategories().clear();
for (RssCategory rssCategory : getCategories()) {
SyndCategory syndCategory = new SyndCategory();