sTitle = $sTitle; $this->sIconUrl = $sIconUrl; $this->sText = $sText; } /** * @return string */ public function GetTitle(): string { return $this->sTitle; } /** * @param string $sTitle * * @return DashletHeaderStatic */ public function SetTitle(string $sTitle): DashletHeaderStatic { $this->sTitle = $sTitle; return $this; } /** * @return string */ public function GetIconUrl(): string { return $this->sIconUrl; } /** * @param string $sIconUrl * * @return DashletHeaderStatic */ public function SetIconUrl(string $sIconUrl): DashletHeaderStatic { $this->sIconUrl = $sIconUrl; return $this; } /** * @return string */ public function GetText(): string { return $this->sText; } /** * @param string $sText * * @return DashletHeaderStatic */ public function SetText(string $sText): DashletHeaderStatic { $this->sText = $sText; return $this; } }