/**
  * Sets the entry title.
  *
  * <p>
  *
  * @param title the entry title to set, <b>null</b> if none.
  */
 public void setTitle(String title) {
   if (_title == null) _title = new SyndContentImpl();
   _title.setValue(title);
 }
 /**
  * Returns the entry title.
  *
  * <p>
  *
  * @return the entry title, <b>null</b> if none.
  */
 public String getTitle() {
   if (_title != null) return _title.getValue();
   return null;
 }