protected Item createRSSItem(SyndEntry sEntry) {
    Item item = super.createRSSItem(sEntry);

    SyndContent sContent = sEntry.getDescription();
    if (sContent != null) {
      item.setDescription(createItemDescription(sContent));
    }
    List contents = sEntry.getContents();
    if (contents != null && contents.size() > 0) {
      SyndContent syndContent = (SyndContent) contents.get(0);
      Content cont = new Content();
      cont.setValue(syndContent.getValue());
      cont.setType(syndContent.getType());
      item.setContent(cont);
    }
    return item;
  }
 protected SyndEntry createSyndEntry(Item item) {
   SyndEntry syndEntry = super.createSyndEntry(item);
   Description desc = item.getDescription();
   if (desc != null) {
     SyndContent descContent = new SyndContentImpl();
     descContent.setType(desc.getType());
     descContent.setValue(desc.getValue());
     syndEntry.setDescription(descContent);
   }
   Content cont = item.getContent();
   if (cont != null) {
     SyndContent content = new SyndContentImpl();
     content.setType(cont.getType());
     content.setValue(cont.getValue());
     List syndContents = new ArrayList();
     syndContents.add(content);
     syndEntry.setContents(syndContents);
   }
   return syndEntry;
 }