/*
  * (non-Javadoc)
  *
  * @see com.nokia.tracecompiler.model.TraceObject#reset()
  */
 @Override
 void reset() {
   for (TraceConstantTableEntry entry : entries) {
     // Model listeners are not notified on reset, but if the
     // entry itself implements a delete notification interface,
     // it must be called to do appropriate cleanup
     notifyOnDelete(entry);
     entry.reset();
   }
   super.reset();
 }