/**
  * Returns the highlighted content if available, or the original content otherwise.
  *
  * @return
  */
 public String getHighlightedContent() {
   return (highlighted != null && highlighted.getContent() != null
       ? highlighted.getContent()
       : content);
 }