c_id = $value; return $this; } /** * Get c_id * * @return integer */ public function get_c_id() { return $this->c_id; } /** * Set comment_id * * @param integer $value * @return BlogComment */ public function set_comment_id($value) { $this->comment_id = $value; return $this; } /** * Get comment_id * * @return integer */ public function get_comment_id() { return $this->comment_id; } /** * Set title * * @param string $value * @return BlogComment */ public function set_title($value) { $this->title = $value; return $this; } /** * Get title * * @return string */ public function get_title() { return $this->title; } /** * Set comment * * @param text $value * @return BlogComment */ public function set_comment($value) { $this->comment = $value; return $this; } /** * Get comment * * @return text */ public function get_comment() { return $this->comment; } /** * Set author_id * * @param integer $value * @return BlogComment */ public function set_author_id($value) { $this->author_id = $value; return $this; } /** * Get author_id * * @return integer */ public function get_author_id() { return $this->author_id; } /** * Set date_creation * * @param datetime $value * @return BlogComment */ public function set_date_creation($value) { $this->date_creation = $value; return $this; } /** * Get date_creation * * @return datetime */ public function get_date_creation() { return $this->date_creation; } /** * Set blog_id * * @param integer $value * @return BlogComment */ public function set_blog_id($value) { $this->blog_id = $value; return $this; } /** * Get blog_id * * @return integer */ public function get_blog_id() { return $this->blog_id; } /** * Set post_id * * @param integer $value * @return BlogComment */ public function set_post_id($value) { $this->post_id = $value; return $this; } /** * Get post_id * * @return integer */ public function get_post_id() { return $this->post_id; } /** * Set task_id * * @param integer $value * @return BlogComment */ public function set_task_id($value) { $this->task_id = $value; return $this; } /** * Get task_id * * @return integer */ public function get_task_id() { return $this->task_id; } /** * Set parent_comment_id * * @param integer $value * @return BlogComment */ public function set_parent_comment_id($value) { $this->parent_comment_id = $value; return $this; } /** * Get parent_comment_id * * @return integer */ public function get_parent_comment_id() { return $this->parent_comment_id; } }