getData('typeId'); } /** * Set the ID of the announcement type. * @param $typeId int */ function setTypeId($typeId) { return $this->setData('typeId', $typeId); } /** * Get the conference ID of the announcement type. * @return int */ function getConferenceId() { return $this->getData('conferenceId'); } /** * Set the conference ID of the announcement type. * @param $conferenceId int */ function setConferenceId($conferenceId) { return $this->setData('conferenceId', $conferenceId); } /** * Get the type of the announcement type. * @return string */ function getAnnouncementTypeName() { return $this->getLocalizedData('name'); } /** * Get the type of the announcement type. * @param $locale string * @return string */ function getName($locale) { return $this->getData('name', $locale); } /** * Set the type of the announcement type. * @param $name string * @param $locale string */ function setName($name, $locale) { return $this->setData('name', $name, $locale); } } ?>