1 | <?php |
||
17 | class TTypeAnnotationType extends IsOK |
||
18 | { |
||
19 | use IsOKToolboxTrait, GInlineExpressionsTrait, TQualifiedNameTrait, TSimpleIdentifierTrait; |
||
20 | /** |
||
21 | * @property string $term |
||
22 | */ |
||
23 | private $term = null; |
||
24 | |||
25 | /** |
||
26 | * @property string $qualifier |
||
27 | */ |
||
28 | private $qualifier = null; |
||
29 | |||
30 | /** |
||
31 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edm\TPropertyValueType[] $propertyValue |
||
32 | */ |
||
33 | private $propertyValue = []; |
||
34 | |||
35 | /** |
||
36 | * Gets as term |
||
37 | * |
||
38 | * @return string |
||
39 | */ |
||
40 | public function getTerm() |
||
44 | |||
45 | /** |
||
46 | * Sets a new term |
||
47 | * |
||
48 | * @param string $term |
||
49 | * @return self |
||
50 | */ |
||
51 | public function setTerm($term) |
||
56 | |||
57 | /** |
||
58 | * Gets as qualifier |
||
59 | * |
||
60 | * @return string |
||
61 | */ |
||
62 | public function getQualifier() |
||
66 | |||
67 | /** |
||
68 | * Sets a new qualifier |
||
69 | * |
||
70 | * @param string $qualifier |
||
71 | * @return self |
||
72 | */ |
||
73 | public function setQualifier($qualifier) |
||
78 | |||
79 | /** |
||
80 | * Adds as propertyValue |
||
81 | * |
||
82 | * @return self |
||
83 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TPropertyValueType $propertyValue |
||
84 | */ |
||
85 | public function addToPropertyValue(TPropertyValueType $propertyValue) |
||
90 | |||
91 | /** |
||
92 | * isset propertyValue |
||
93 | * |
||
94 | * @param scalar $index |
||
95 | * @return boolean |
||
96 | */ |
||
97 | public function issetPropertyValue($index) |
||
101 | |||
102 | /** |
||
103 | * unset propertyValue |
||
104 | * |
||
105 | * @param scalar $index |
||
106 | * @return void |
||
107 | */ |
||
108 | public function unsetPropertyValue($index) |
||
112 | |||
113 | /** |
||
114 | * Gets as propertyValue |
||
115 | * |
||
116 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TPropertyValueType[] |
||
117 | */ |
||
118 | public function getPropertyValue() |
||
122 | |||
123 | /** |
||
124 | * Sets a new propertyValue |
||
125 | * |
||
126 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TPropertyValueType[] $propertyValue |
||
127 | * @return self |
||
128 | */ |
||
129 | public function setPropertyValue(array $propertyValue) |
||
134 | |||
135 | public function isOK(&$msg = null) |
||
158 | } |
||
159 |