c_id = $value; return $this; } /** * Get c_id * * @return integer */ public function get_c_id() { return $this->c_id; } /** * Set cat_id * * @param integer $value * @return ForumCategory */ public function set_cat_id($value) { $this->cat_id = $value; return $this; } /** * Get cat_id * * @return integer */ public function get_cat_id() { return $this->cat_id; } /** * Set cat_title * * @param string $value * @return ForumCategory */ public function set_cat_title($value) { $this->cat_title = $value; return $this; } /** * Get cat_title * * @return string */ public function get_cat_title() { return $this->cat_title; } /** * Set cat_comment * * @param text $value * @return ForumCategory */ public function set_cat_comment($value) { $this->cat_comment = $value; return $this; } /** * Get cat_comment * * @return text */ public function get_cat_comment() { return $this->cat_comment; } /** * Set cat_order * * @param integer $value * @return ForumCategory */ public function set_cat_order($value) { $this->cat_order = $value; return $this; } /** * Get cat_order * * @return integer */ public function get_cat_order() { return $this->cat_order; } /** * Set locked * * @param integer $value * @return ForumCategory */ public function set_locked($value) { $this->locked = $value; return $this; } /** * Get locked * * @return integer */ public function get_locked() { return $this->locked; } /** * Set session_id * * @param integer $value * @return ForumCategory */ public function set_session_id($value) { $this->session_id = $value; return $this; } /** * Get session_id * * @return integer */ public function get_session_id() { return $this->session_id; } }