getData('text'); } /** * Set the text component of the codelist. * @param $text string */ function setText($text) { return $this->setData('text', $text); } /** * Get codelist code. * @return string */ function getCode() { return $this->getData('code'); } /** * Set codelist code. * @param $code string */ function setCode($code) { return $this->setData('code', $code); } } ?>