1<?php
2/**
3 * phpDocumentor
4 *
5 * PHP Version 5.5
6 *
7 * @copyright 2010-2015 Mike van Riel / Naenius (http://www.naenius.com)
8 * @license   http://www.opensource.org/licenses/mit-license.php MIT
9 * @link      http://phpdoc.org
10 */
11
12namespace phpDocumentor\Reflection;
13
14/**
15 * Interface for Api Elements
16 */
17interface Element
18{
19    /**
20     * Returns the Fqsen of the element.
21     *
22     * @return Fqsen
23     */
24    public function getFqsen();
25
26    /**
27     * Returns the name of the element.
28     *
29     * @return string
30     */
31    public function getName();
32}