getData('contextId'); } /** * Set contextId of this NavigationMenu * @param $contextId int */ function setContextId($contextId) { $this->setData('contextId', $contextId); } /** * Get title of this NavigationMenu. Not localized. * @return string */ function getTitle() { return $this->getData('title'); } /** * Set title of this NavigationMenu. Not localized. * @param $title string */ function setTitle($title) { $this->setData('title', $title); } /** * Get areaName of this NavigationMenu. Not localized. * @return string */ function getAreaName() { return $this->getData('areaName'); } /** * Set navigationArea name of this NavigationMenu. Not localized. * @param $areaName string */ function setAreaName($areaName) { $this->setData('areaName', $areaName); } } ?>