cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } /** * Set taskId * * @param integer $taskId * @return EntityCBlogTask */ public function setTaskId($taskId) { $this->taskId = $taskId; return $this; } /** * Get taskId * * @return integer */ public function getTaskId() { return $this->taskId; } /** * Set blogId * * @param integer $blogId * @return EntityCBlogTask */ public function setBlogId($blogId) { $this->blogId = $blogId; return $this; } /** * Get blogId * * @return integer */ public function getBlogId() { return $this->blogId; } /** * Set title * * @param string $title * @return EntityCBlogTask */ public function setTitle($title) { $this->title = $title; return $this; } /** * Get title * * @return string */ public function getTitle() { return $this->title; } /** * Set description * * @param string $description * @return EntityCBlogTask */ public function setDescription($description) { $this->description = $description; return $this; } /** * Get description * * @return string */ public function getDescription() { return $this->description; } /** * Set color * * @param string $color * @return EntityCBlogTask */ public function setColor($color) { $this->color = $color; return $this; } /** * Get color * * @return string */ public function getColor() { return $this->color; } /** * Set systemTask * * @param boolean $systemTask * @return EntityCBlogTask */ public function setSystemTask($systemTask) { $this->systemTask = $systemTask; return $this; } /** * Get systemTask * * @return boolean */ public function getSystemTask() { return $this->systemTask; } }