/** Sets the "single-best-record" element */
 public void setSingleBestRecord(
     org.openhie.openempi.configuration.xml.SingleBestRecordType singleBestRecord) {
   synchronized (monitor()) {
     check_orphaned();
     org.openhie.openempi.configuration.xml.SingleBestRecordType target = null;
     target =
         (org.openhie.openempi.configuration.xml.SingleBestRecordType)
             get_store().find_element_user(SINGLEBESTRECORD$1, 0);
     if (target == null) {
       target =
           (org.openhie.openempi.configuration.xml.SingleBestRecordType)
               get_store().add_element_user(SINGLEBESTRECORD$0);
     }
     target.set(singleBestRecord);
   }
 }