entry.setPublishedDate(new Date());
entry.setAuthor("Bob Newhart");
entry.setLink("http://bobnewhart.com");
entries.add(entry);
SyndContentImpl description = new SyndContentImpl();
description.setType("text/html");
description.setValue("Remember Those Famous People On the Phone Skits?");
entry.setDescription(description);
ArrayList contents = new ArrayList();
SyndContentImpl content = new SyndContentImpl();
content.setType("text/xhtml");
content.setValue("<div><str>Larry, Darrel, and Darrel</str><br/>Where are they now?</div>");
contents.add(content);
SyndContentImpl content2 = new SyndContentImpl();
content2.setType("text/html");
content2.setValue("<b>News</b><p> Bob wasn't funny on " + new Date());
contents.add(content2);
entry.setContents(contents);
feed.setEntries(entries);