comment = $comment; return $this; } /** * Get comment * * @return string */ public function getComment() { return $this->comment; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set questionId * * @param integer $questionId * @return ExtraFieldValues */ public function setQuestionId($questionId) { $this->questionId = $questionId; return $this; } /** * Get questionId * * @return integer */ public function getQuestionId() { return $this->questionId; } /** * Set fieldId * * @param integer $fieldId * @return ExtraFieldValues */ public function setFieldId($fieldId) { $this->fieldId = $fieldId; return $this; } /** * Get fieldId * * @return integer */ public function getFieldId() { return $this->fieldId; } /** * Set tms * * @param \DateTime $tms * @return ExtraFieldValues */ public function setTms($tms) { $this->tms = $tms; return $this; } /** * Get tms * * @return \DateTime */ public function getTms() { return $this->tms; } /** * Set questionId * * @param integer $questionId * @return QuestionFieldValues */ public function setUserId($id) { $this->userId = $id; return $this; } /** * Get questionId * * @return integer */ public function getUserId() { return $this->userId; } }