blogId = $blogId; return $this; } /** * Get blogId * * @return integer */ public function getBlogId() { return $this->blogId; } /** * Set title * * @param string $title * @return CBlogTask */ 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 CBlogTask */ 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 CBlogTask */ 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 CBlogTask */ public function setSystemTask($systemTask) { $this->systemTask = $systemTask; return $this; } /** * Get systemTask * * @return boolean */ public function getSystemTask() { return $this->systemTask; } /** * Set taskId * * @param integer $taskId * @return CBlogTask */ public function setTaskId($taskId) { $this->taskId = $taskId; return $this; } /** * Get taskId * * @return integer */ public function getTaskId() { return $this->taskId; } /** * Set cId * * @param integer $cId * @return CBlogTask */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } }