path = $path; return $this; } /** * Get path * * @return string */ public function getPath() { return $this->path; } /** * Set comment * * @param string $comment * @return CDocument */ public function setComment($comment) { $this->comment = $comment; return $this; } /** * Get comment * * @return string */ public function getComment() { return $this->comment; } /** * Set title * * @param string $title * @return CDocument */ public function setTitle($title) { $this->title = $title; return $this; } /** * Get title * * @return string */ public function getTitle() { return $this->title; } /** * Set filetype * * @param string $filetype * @return CDocument */ public function setFiletype($filetype) { $this->filetype = $filetype; return $this; } /** * Get filetype * * @return string */ public function getFiletype() { return $this->filetype; } /** * Set size * * @param integer $size * @return CDocument */ public function setSize($size) { $this->size = $size; return $this; } /** * Get size * * @return integer */ public function getSize() { return $this->size; } /** * Set readonly * * @param boolean $readonly * @return CDocument */ public function setReadonly($readonly) { $this->readonly = $readonly; return $this; } /** * Get readonly * * @return boolean */ public function getReadonly() { return $this->readonly; } /** * Set sessionId * * @param integer $sessionId * @return CDocument */ public function setSessionId($sessionId) { $this->sessionId = $sessionId; return $this; } /** * Get sessionId * * @return integer */ public function getSessionId() { return $this->sessionId; } /** * Set id * * @param integer $id * @return CDocument */ public function setId($id) { $this->id = $id; return $this; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set cId * * @param integer $cId * @return CDocument */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } /** * @return int */ public function getIid() { return $this->iid; } /** * @param int $iid * @return CDocument */ public function setIid($iid) { $this->iid = $iid; return $this; } }