cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } /** * Set id * * @param integer $id * @return EntityCQuizQuestionOption */ public function setId($id) { $this->id = $id; return $this; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set questionId * * @param integer $questionId * @return EntityCQuizQuestionOption */ public function setQuestionId($questionId) { $this->questionId = $questionId; return $this; } /** * Get questionId * * @return integer */ public function getQuestionId() { return $this->questionId; } /** * Set name * * @param string $name * @return EntityCQuizQuestionOption */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set position * * @param integer $position * @return EntityCQuizQuestionOption */ public function setPosition($position) { $this->position = $position; return $this; } /** * Get position * * @return integer */ public function getPosition() { return $this->position; } }