cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } /** * Set id * * @param integer $id * @return EntityCForumAttachment */ public function setId($id) { $this->id = $id; return $this; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set path * * @param string $path * @return EntityCForumAttachment */ public function setPath($path) { $this->path = $path; return $this; } /** * Get path * * @return string */ public function getPath() { return $this->path; } /** * Set comment * * @param string $comment * @return EntityCForumAttachment */ public function setComment($comment) { $this->comment = $comment; return $this; } /** * Get comment * * @return string */ public function getComment() { return $this->comment; } /** * Set size * * @param integer $size * @return EntityCForumAttachment */ public function setSize($size) { $this->size = $size; return $this; } /** * Get size * * @return integer */ public function getSize() { return $this->size; } /** * Set postId * * @param integer $postId * @return EntityCForumAttachment */ public function setPostId($postId) { $this->postId = $postId; return $this; } /** * Get postId * * @return integer */ public function getPostId() { return $this->postId; } /** * Set filename * * @param string $filename * @return EntityCForumAttachment */ public function setFilename($filename) { $this->filename = $filename; return $this; } /** * Get filename * * @return string */ public function getFilename() { return $this->filename; } }