1 | <?php |
||
14 | class TEntityPropertyType extends IsOK |
||
15 | { |
||
16 | use TCommonPropertyAttributesTrait; |
||
17 | |||
18 | /** |
||
19 | * @property string $storeGeneratedPattern |
||
20 | */ |
||
21 | private $storeGeneratedPattern = null; |
||
22 | |||
23 | /** |
||
24 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edm\TDocumentationType[] $documentation |
||
25 | */ |
||
26 | private $documentation = []; |
||
27 | |||
28 | /** |
||
29 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edm\TValueAnnotationType[] $valueAnnotation |
||
30 | */ |
||
31 | private $valueAnnotation = []; |
||
32 | |||
33 | /** |
||
34 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edm\TTypeAnnotationType[] $typeAnnotation |
||
35 | */ |
||
36 | private $typeAnnotation = []; |
||
37 | |||
38 | /** |
||
39 | * Gets as storeGeneratedPattern |
||
40 | * |
||
41 | * @return string |
||
42 | */ |
||
43 | public function getStoreGeneratedPattern() |
||
47 | |||
48 | /** |
||
49 | * Sets a new storeGeneratedPattern |
||
50 | * |
||
51 | * @param string $storeGeneratedPattern |
||
52 | * @return self |
||
53 | */ |
||
54 | public function setStoreGeneratedPattern($storeGeneratedPattern) |
||
59 | |||
60 | /** |
||
61 | * Adds as documentation |
||
62 | * |
||
63 | * @return self |
||
64 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TDocumentationType $documentation |
||
65 | */ |
||
66 | public function addToDocumentation(TDocumentationType $documentation) |
||
71 | |||
72 | /** |
||
73 | * isset documentation |
||
74 | * |
||
75 | * @param scalar $index |
||
76 | * @return boolean |
||
77 | */ |
||
78 | public function issetDocumentation($index) |
||
82 | |||
83 | /** |
||
84 | * unset documentation |
||
85 | * |
||
86 | * @param scalar $index |
||
87 | * @return void |
||
88 | */ |
||
89 | public function unsetDocumentation($index) |
||
93 | |||
94 | /** |
||
95 | * Gets as documentation |
||
96 | * |
||
97 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TDocumentationType[] |
||
98 | */ |
||
99 | public function getDocumentation() |
||
103 | |||
104 | /** |
||
105 | * Sets a new documentation |
||
106 | * |
||
107 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TDocumentationType[] $documentation |
||
108 | * @return self |
||
109 | */ |
||
110 | public function setDocumentation(array $documentation) |
||
115 | |||
116 | /** |
||
117 | * Adds as valueAnnotation |
||
118 | * |
||
119 | * @return self |
||
120 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TValueAnnotationType $valueAnnotation |
||
121 | */ |
||
122 | public function addToValueAnnotation(TValueAnnotationType $valueAnnotation) |
||
127 | |||
128 | /** |
||
129 | * isset valueAnnotation |
||
130 | * |
||
131 | * @param scalar $index |
||
132 | * @return boolean |
||
133 | */ |
||
134 | public function issetValueAnnotation($index) |
||
138 | |||
139 | /** |
||
140 | * unset valueAnnotation |
||
141 | * |
||
142 | * @param scalar $index |
||
143 | * @return void |
||
144 | */ |
||
145 | public function unsetValueAnnotation($index) |
||
149 | |||
150 | /** |
||
151 | * Gets as valueAnnotation |
||
152 | * |
||
153 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TValueAnnotationType[] |
||
154 | */ |
||
155 | public function getValueAnnotation() |
||
159 | |||
160 | /** |
||
161 | * Sets a new valueAnnotation |
||
162 | * |
||
163 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TValueAnnotationType[] $valueAnnotation |
||
164 | * @return self |
||
165 | */ |
||
166 | public function setValueAnnotation(array $valueAnnotation) |
||
171 | |||
172 | /** |
||
173 | * Adds as typeAnnotation |
||
174 | * |
||
175 | * @return self |
||
176 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TTypeAnnotationType $typeAnnotation |
||
177 | */ |
||
178 | public function addToTypeAnnotation(TTypeAnnotationType $typeAnnotation) |
||
183 | |||
184 | /** |
||
185 | * isset typeAnnotation |
||
186 | * |
||
187 | * @param scalar $index |
||
188 | * @return boolean |
||
189 | */ |
||
190 | public function issetTypeAnnotation($index) |
||
194 | |||
195 | /** |
||
196 | * unset typeAnnotation |
||
197 | * |
||
198 | * @param scalar $index |
||
199 | * @return void |
||
200 | */ |
||
201 | public function unsetTypeAnnotation($index) |
||
205 | |||
206 | /** |
||
207 | * Gets as typeAnnotation |
||
208 | * |
||
209 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TTypeAnnotationType[] |
||
210 | */ |
||
211 | public function getTypeAnnotation() |
||
215 | |||
216 | /** |
||
217 | * Sets a new typeAnnotation |
||
218 | * |
||
219 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TTypeAnnotationType[] $typeAnnotation |
||
220 | * @return self |
||
221 | */ |
||
222 | public function setTypeAnnotation(array $typeAnnotation) |
||
227 | |||
228 | public function isOK(&$msg = null) |
||
235 | } |
||
236 |