title = $title; $this->path = $path; $this->private = $private; } /** * Gets the title. * * @return string * The Title. */ public function getTitle() { return $this->title; } /** * Gets the directory path. * * @return string * The directory path. */ public function getPath() { return $this->path; } /** * Is the directory private (or public). * * @return bool * TRUE if the directory is private, FALSE if it is public. */ public function isPrivate() { return $this->private; } }