sType; } /** * @param string $sType * * @return $this */ public function SetType(string $sType) { $this->sType = $sType; return $this; } /** * @param $bChecked * * @return $this */ public function SetIsChecked($bIsChecked) { $this->bIsChecked = $bIsChecked; return $this; } /** * @return bool */ public function IsChecked() { return $this->bIsChecked; } /** * @return bool */ public function IsDisabled() { return $this->bIsDisabled; } /** * @param bool $bIsDisabled * * @return $this */ public function SetIsDisabled(bool $bIsDisabled) { $this->bIsDisabled = $bIsDisabled; return $this; } /** * @return bool */ public function IsReadonly() { return $this->bIsReadonly; } /** * @param bool $bIsReadonly * * @return $this */ public function SetIsReadonly(bool $bIsReadonly) { $this->bIsReadonly = $bIsReadonly; return $this; } }