setName()
setName(string $name) : void
Parameters
string | $name |
Describes the public interface for the description of a project.
getFiles() : \phpDocumentor\Descriptor\Collection
getIndexes() : \phpDocumentor\Descriptor\Collection
getNamespace() : \phpDocumentor\Descriptor\Interfaces\NamespaceInterface
<?php
/**
* phpDocumentor
*
* PHP Version 5.3
*
* @copyright 2010-2014 Mike van Riel / Naenius (http://www.naenius.com)
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link http://phpdoc.org
*/
namespace phpDocumentor\Descriptor\Interfaces;
use phpDocumentor\Descriptor\Collection;
/**
* Describes the public interface for the description of a project.
*/
interface ProjectInterface
{
/**
* @param string $name
* @return void
*/
public function setName($name);
/**
* @return string
*/
public function getName();
/**
* @return Collection
*/
public function getFiles();
/**
* @return Collection
*/
public function getIndexes();
/**
* @return NamespaceInterface
*/
public function getNamespace();
}