score = $score; return $this; } /** * Get score. * * @return float */ public function getScore() { return $this->score; } /** * Set display. * * @param string $display * * @return GradebookScoreDisplay */ public function setDisplay($display) { $this->display = $display; return $this; } /** * Get display. * * @return string */ public function getDisplay() { return $this->display; } /** * Set categoryId. * * @param int $categoryId * * @return GradebookScoreDisplay */ public function setCategoryId($categoryId) { $this->categoryId = $categoryId; return $this; } /** * Get categoryId. * * @return int */ public function getCategoryId() { return $this->categoryId; } /** * Set scoreColorPercent. * * @param float $scoreColorPercent * * @return GradebookScoreDisplay */ public function setScoreColorPercent($scoreColorPercent) { $this->scoreColorPercent = $scoreColorPercent; return $this; } /** * Get scoreColorPercent. * * @return float */ public function getScoreColorPercent() { return $this->scoreColorPercent; } /** * Get id. * * @return int */ public function getId() { return $this->id; } }