path = $path; return $this; } /** * Get path. * * @return string */ public function getPath() { return $this->path; } /** * Set comment. * * @param string $comment * * @return CBlogAttachment */ public function setComment($comment) { $this->comment = $comment; return $this; } /** * Get comment. * * @return string */ public function getComment() { return $this->comment; } /** * Set size. * * @param int $size * * @return CBlogAttachment */ public function setSize($size) { $this->size = $size; return $this; } /** * Get size. * * @return int */ public function getSize() { return $this->size; } /** * Set postId. * * @param int $postId * * @return CBlogAttachment */ public function setPostId($postId) { $this->postId = $postId; return $this; } /** * Get postId. * * @return int */ public function getPostId() { return $this->postId; } /** * Set filename. * * @param string $filename * * @return CBlogAttachment */ public function setFilename($filename) { $this->filename = $filename; return $this; } /** * Get filename. * * @return string */ public function getFilename() { return $this->filename; } /** * Set blogId. * * @param int $blogId * * @return CBlogAttachment */ public function setBlogId($blogId) { $this->blogId = $blogId; return $this; } /** * Get blogId. * * @return int */ public function getBlogId() { return $this->blogId; } /** * Set commentId. * * @param int $commentId * * @return CBlogAttachment */ public function setCommentId($commentId) { $this->commentId = $commentId; return $this; } /** * Get commentId. * * @return int */ public function getCommentId() { return $this->commentId; } /** * Set cId. * * @param int $cId * * @return CBlogAttachment */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId. * * @return int */ public function getCId() { return $this->cId; } }