attempt; } /** * @param TrackExercise $attempt */ public function setAttempt(TrackExercise $attempt) { $this->attempt = $attempt; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set exeId * * @param integer $exeId * @return TrackExerciseAttemptJury */ public function setExeId($exeId) { $this->exeId = $exeId; return $this; } /** * Get exeId * * @return integer */ public function getExeId() { return $this->exeId; } /** * Set questionId * * @param integer $questionId * @return TrackExerciseAttemptJury */ public function setQuestionId($questionId) { $this->questionId = $questionId; return $this; } /** * Get questionId * * @return integer */ public function getQuestionId() { return $this->questionId; } /** * Set score * * @param float $score * @return TrackExerciseAttemptJury */ public function setScore($score) { $this->score = $score; return $this; } /** * Get score * * @return float */ public function getScore() { return $this->score; } /** * Set juryMemberId * * @param integer $juryUserId * @return TrackExerciseAttemptJury */ public function setJuryUserId($juryUserId) { $this->juryUserId = $juryUserId; return $this; } /** * Get juryMemberId * * @return integer */ public function getJuryUserId() { return $this->juryUserId; } /** * Set questionScoreNameId * * @param integer $questionScoreNameId * @return TrackExerciseAttemptJury */ public function setQuestionScoreNameId($questionScoreNameId) { $this->questionScoreNameId = $questionScoreNameId; return $this; } /** * Get questionScoreNameId * * @return integer */ public function getQuestionScoreNameId() { return $this->questionScoreNameId; } }