/*
  * (non-Javadoc)
  *
  * @see com.nokia.tracecompiler.model.TraceObject#setName(java.lang.String)
  */
 @Override
 public void setName(String name) throws TraceCompilerException {
   super.setName(name);
   // Note: Currently name changes are disabled when a table is referenced
   // by parameters. If enabled at some point, a notification about this
   // needs to be sent to the parameters
 }
 /*
  * (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();
 }