title = $title; return $this; } /** * Get title * * @return string */ public function getTitle() { return $this->title; } /** * Set content * * @param string $content * @return CCourseDescription */ public function setContent($content) { $this->content = $content; return $this; } /** * Get content * * @return string */ public function getContent() { return $this->content; } /** * Set sessionId * * @param integer $sessionId * @return CCourseDescription */ public function setSessionId($sessionId) { $this->sessionId = $sessionId; return $this; } /** * Get sessionId * * @return integer */ public function getSessionId() { return $this->sessionId; } /** * Set descriptionType * * @param integer $descriptionType * @return CCourseDescription */ public function setDescriptionType($descriptionType) { $this->descriptionType = $descriptionType; return $this; } /** * Get descriptionType * * @return integer */ public function getDescriptionType() { return $this->descriptionType; } /** * Set progress * * @param integer $progress * @return CCourseDescription */ public function setProgress($progress) { $this->progress = $progress; return $this; } /** * Get progress * * @return integer */ public function getProgress() { return $this->progress; } /** * Set id * * @param integer $id * @return CCourseDescription */ public function setId($id) { $this->id = $id; return $this; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set cId * * @param integer $cId * @return CCourseDescription */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } }