course = $course; return $this; } /** * Get course. * * @return \Chamilo\CoreBundle\Entity\Course */ public function getCourse() { return $this->course; } /** * Set toolId. * * @param string $toolId * * @return SearchEngineRef */ public function setToolId($toolId) { $this->toolId = $toolId; return $this; } /** * Get toolId. * * @return string */ public function getToolId() { return $this->toolId; } /** * Set refIdHighLevel. * * @param int $refIdHighLevel * * @return SearchEngineRef */ public function setRefIdHighLevel($refIdHighLevel) { $this->refIdHighLevel = $refIdHighLevel; return $this; } /** * Get refIdHighLevel. * * @return int */ public function getRefIdHighLevel() { return $this->refIdHighLevel; } /** * Set refIdSecondLevel. * * @param int $refIdSecondLevel * * @return SearchEngineRef */ public function setRefIdSecondLevel($refIdSecondLevel) { $this->refIdSecondLevel = $refIdSecondLevel; return $this; } /** * Get refIdSecondLevel. * * @return int */ public function getRefIdSecondLevel() { return $this->refIdSecondLevel; } /** * Set searchDid. * * @param int $searchDid * * @return SearchEngineRef */ public function setSearchDid($searchDid) { $this->searchDid = $searchDid; return $this; } /** * Get searchDid. * * @return int */ public function getSearchDid() { return $this->searchDid; } /** * Get id. * * @return int */ public function getId() { return $this->id; } }