title = $title; return $this; } /** * Get title * * @return string */ public function getTitle() { return $this->title; } /** * Set fullText * * @param string $fullText * @return CBlogPost */ public function setFullText($fullText) { $this->fullText = $fullText; return $this; } /** * Get fullText * * @return string */ public function getFullText() { return $this->fullText; } /** * Set dateCreation * * @param \DateTime $dateCreation * @return CBlogPost */ public function setDateCreation($dateCreation) { $this->dateCreation = $dateCreation; return $this; } /** * Get dateCreation * * @return \DateTime */ public function getDateCreation() { return $this->dateCreation; } /** * Set blogId * * @param integer $blogId * @return CBlogPost */ public function setBlogId($blogId) { $this->blogId = $blogId; return $this; } /** * Get blogId * * @return integer */ public function getBlogId() { return $this->blogId; } /** * Set authorId * * @param integer $authorId * @return CBlogPost */ public function setAuthorId($authorId) { $this->authorId = $authorId; return $this; } /** * Get authorId * * @return integer */ public function getAuthorId() { return $this->authorId; } /** * Set postId * * @param integer $postId * @return CBlogPost */ public function setPostId($postId) { $this->postId = $postId; return $this; } /** * Get postId * * @return integer */ public function getPostId() { return $this->postId; } /** * Set cId * * @param integer $cId * @return CBlogPost */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } }