sValue; } /** * @param string $sValue * * @return SelectOption */ public function SetValue(string $sValue) { $this->sValue = $sValue; return $this; } /** * @return string */ public function GetLabel(): string { return $this->sLabel; } /** * @param string $sLabel * * @return SelectOption */ public function SetLabel(string $sLabel) { $this->sLabel = $sLabel; return $this; } /** * @return bool */ public function IsSelected(): bool { return $this->bSelected; } /** * @param bool $bSelected * * @return SelectOption */ public function SetSelected(bool $bSelected) { $this->bSelected = $bSelected; return $this; } /** * @return bool */ public function IsDisabled(): bool { return $this->bDisabled; } /** * @param bool $bDisabled * * @return $this */ public function SetDisabled(bool $bDisabled) { $this->bDisabled = $bDisabled; return $this; } }