/**
  * Method which appends an entry to this coalesed log entry
  *
  * @param entry The entry to append
  */
 protected void appendEntry(LogEntry entry) {
   entries[getNumEntries()] = entry;
   entry.setParent(new PhantomLogEntry(entry));
 }