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 int */ function getTypeName() { return $this->getData('typeName'); } /** * Set the type of the announcement type. * @param $typeName int */ function setTypeName($typeName) { return $this->setData('typeName', $typeName); } } ?>