value; } /** * @param string $value */ public function setValue($value) { $this->value = $value; } /** * @return TrackQuestionTemplate */ public function getQuestion() { return $this->question; } /** * @param TrackQuestionTemplate $question */ public function setQuestion($question) { $this->question = $question; } /** * @return Presentation */ public function getPresentation() { return $this->presentation; } /** * @param Presentation $presentation */ public function setPresentation($presentation) { $this->presentation = $presentation; } /** * @return string */ public function getQuestionName(){ return $this->question->getName(); } /** * @return int */ public function getQuestionId(){ return $this->question->getId(); } public function __construct() { parent::__construct(); } }