public function __construct($control, $errorMessage, $namespace)
 {
     parent::__construct($control, $errorMessage);
     $this->namespace = $namespace;
 }
 public function __construct(Customweb_Form_Control_IControl $control, $errorMessage, $maximalLength)
 {
     parent::__construct($control, $errorMessage);
     $this->maximalLength = $maximalLength;
 }
 public function __construct($control, $jsVariableName)
 {
     parent::__construct($control, null);
     $this->jsVariableName = $jsVariableName;
 }
 public function __construct($control, $errorMessage, $jsVariableName)
 {
     parent::__construct($control, $errorMessage);
     $this->jsVariableName = $jsVariableName;
 }