percentage = $percentage; return $this; } /** * Get percentage. * * @return string */ public function getPercentage() { return $this->percentage; } /** * Set title. * * @return GradeComponents */ public function setTitle(string $title) { $this->title = $title; return $this; } /** * Get title. * * @return string */ public function getTitle() { return $this->title; } /** * Set acronym. * * @return GradeComponents */ public function setAcronym(string $acronym) { $this->acronym = $acronym; return $this; } /** * Get acronym. * * @return string */ public function getAcronym() { return $this->acronym; } /** * Set gradeModelId. * * @return GradeComponents */ public function setGradeModelId(int $gradeModelId) { $this->gradeModelId = $gradeModelId; return $this; } /** * Get gradeModelId. * * @return int */ public function getGradeModelId() { return $this->gradeModelId; } /** * Get id. * * @return int */ public function getId() { return $this->id; } }