/**
  * Constructor with properties initialization
  *
  * @param string $name
  * @param string $label
  */
 public function __construct($name, $label)
 {
     parent::__construct($name, $label);
 }
 /**
  * Constructor with properties initialization.
  * @param string $name
  * @param sting $label
  * @param AsyncRecordFinderField $field
  * @return unknown_type
  */
 public function __construct($name, $field)
 {
     //TODO Refactor: label is not necessary in this class
     parent::__construct($name, '');
     $this->setField($field);
 }