1 | <?php |
||
34 | abstract class AbstractBeanAnnotation extends ReflectionAnnotation |
||
35 | { |
||
36 | |||
37 | /** |
||
38 | * The constructor the initializes the instance with the |
||
39 | * data passed with the token. |
||
40 | * |
||
41 | * @param string $annotationName The annotation name |
||
42 | * @param array $values The annotation values |
||
43 | */ |
||
44 | public function __construct($annotationName, array $values = array()) |
||
53 | |||
54 | /** |
||
55 | * Returns the value of the name attribute. |
||
56 | * |
||
57 | * @return string|null The annotations name attribute |
||
58 | */ |
||
59 | public function getName() |
||
65 | |||
66 | /** |
||
67 | * Returns the value of the description attribute. |
||
68 | * |
||
69 | * @return string|null The annotations description attribute |
||
70 | */ |
||
71 | public function getDescription() |
||
77 | |||
78 | /** |
||
79 | * Returns the value of the lookup attribute. |
||
80 | * |
||
81 | * @return string|null The annotations lookup attribute |
||
82 | */ |
||
83 | public function getLookup() |
||
89 | |||
90 | /** |
||
91 | * Returns the value of the shared attribute. |
||
92 | * |
||
93 | * @return boolean The annotations shared attribute |
||
94 | */ |
||
95 | public function getShared() |
||
101 | } |
||
102 |