/**
  * Alias of setFilename
  *
  * @param string $value
  */
 public function setValue($value)
 {
     $this->_filename = $value;
     parent::setValue($value);
 }
 /**
  * Set the value of the slider
  *
  * @param integer|float $value
  */
 public function setValue($value)
 {
     $return_value = parent::setValue($value);
     $this->_updateInputReceiver();
 }