/**
  * Sets a string element of the record data array (and trims it).
  *
  * @param string $key key of the element to set (must be non-empty)
  * @param string $value the value that will be written into the element
  *
  * @return void
  */
 public function setRecordPropertyString($key, $value)
 {
     parent::setRecordPropertyString($key, $value);
 }