/**
  * @param $label string The label
  * @param $raw_value string The raw value
  * @param string[] $field_choice_options Map associating the parameters values to the parameters names.
  */
 public function __construct($label, $raw_value, $field_choice_options = array())
 {
     parent::__construct($label, $raw_value, $field_choice_options);
 }
 /**
  * @param string $label string The label
  * @param FormFieldSelectChoiceOption[] $options The group's options
  */
 public function __construct($label, array $options)
 {
     parent::__construct($label, '');
     $this->set_options($options);
 }