1 | <?php |
||
16 | class TAnnotationsType extends IsOK |
||
17 | { |
||
18 | use IsOKToolboxTrait, TQualifiedNameTrait, TSimpleIdentifierTrait; |
||
19 | /** |
||
20 | * @property string $target |
||
21 | */ |
||
22 | private $target = null; |
||
23 | |||
24 | /** |
||
25 | * @property string $qualifier |
||
26 | */ |
||
27 | private $qualifier = null; |
||
28 | |||
29 | /** |
||
30 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edm\TValueAnnotationType[] $valueAnnotation |
||
31 | */ |
||
32 | private $valueAnnotation = []; |
||
33 | |||
34 | /** |
||
35 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edm\TTypeAnnotationType[] $typeAnnotation |
||
36 | */ |
||
37 | private $typeAnnotation = []; |
||
38 | |||
39 | /** |
||
40 | * Gets as target |
||
41 | * |
||
42 | * @return string |
||
43 | */ |
||
44 | public function getTarget() |
||
48 | |||
49 | /** |
||
50 | * Sets a new target |
||
51 | * |
||
52 | * @param string $target |
||
53 | * @return self |
||
54 | */ |
||
55 | public function setTarget($target) |
||
60 | |||
61 | /** |
||
62 | * Gets as qualifier |
||
63 | * |
||
64 | * @return string |
||
65 | */ |
||
66 | public function getQualifier() |
||
70 | |||
71 | /** |
||
72 | * Sets a new qualifier |
||
73 | * |
||
74 | * @param string $qualifier |
||
75 | * @return self |
||
76 | */ |
||
77 | public function setQualifier($qualifier) |
||
82 | |||
83 | /** |
||
84 | * Adds as valueAnnotation |
||
85 | * |
||
86 | * @return self |
||
87 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TValueAnnotationType $valueAnnotation |
||
88 | */ |
||
89 | public function addToValueAnnotation(TValueAnnotationType $valueAnnotation) |
||
94 | |||
95 | /** |
||
96 | * isset valueAnnotation |
||
97 | * |
||
98 | * @param scalar $index |
||
99 | * @return boolean |
||
100 | */ |
||
101 | public function issetValueAnnotation($index) |
||
105 | |||
106 | /** |
||
107 | * unset valueAnnotation |
||
108 | * |
||
109 | * @param scalar $index |
||
110 | * @return void |
||
111 | */ |
||
112 | public function unsetValueAnnotation($index) |
||
116 | |||
117 | /** |
||
118 | * Gets as valueAnnotation |
||
119 | * |
||
120 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TValueAnnotationType[] |
||
121 | */ |
||
122 | public function getValueAnnotation() |
||
126 | |||
127 | /** |
||
128 | * Sets a new valueAnnotation |
||
129 | * |
||
130 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TValueAnnotationType[] $valueAnnotation |
||
131 | * @return self |
||
132 | */ |
||
133 | public function setValueAnnotation(array $valueAnnotation) |
||
138 | |||
139 | /** |
||
140 | * Adds as typeAnnotation |
||
141 | * |
||
142 | * @return self |
||
143 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TTypeAnnotationType $typeAnnotation |
||
144 | */ |
||
145 | public function addToTypeAnnotation(TTypeAnnotationType $typeAnnotation) |
||
150 | |||
151 | /** |
||
152 | * isset typeAnnotation |
||
153 | * |
||
154 | * @param scalar $index |
||
155 | * @return boolean |
||
156 | */ |
||
157 | public function issetTypeAnnotation($index) |
||
161 | |||
162 | /** |
||
163 | * unset typeAnnotation |
||
164 | * |
||
165 | * @param scalar $index |
||
166 | * @return void |
||
167 | */ |
||
168 | public function unsetTypeAnnotation($index) |
||
172 | |||
173 | /** |
||
174 | * Gets as typeAnnotation |
||
175 | * |
||
176 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TTypeAnnotationType[] |
||
177 | */ |
||
178 | public function getTypeAnnotation() |
||
182 | |||
183 | /** |
||
184 | * Sets a new typeAnnotation |
||
185 | * |
||
186 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TTypeAnnotationType[] $typeAnnotation |
||
187 | * @return self |
||
188 | */ |
||
189 | public function setTypeAnnotation(array $typeAnnotation) |
||
194 | |||
195 | public function isOK(&$msg = null) |
||
222 | } |
||
223 |