1 | <?php |
||
18 | class TAssociationEndType extends IsOK |
||
19 | { |
||
20 | use IsOKToolboxTrait, TOperationsTrait, TQualifiedNameTrait, TSimpleIdentifierTrait, TMultiplicityTrait; |
||
21 | /** |
||
22 | * @property string $type |
||
23 | */ |
||
24 | private $type = null; |
||
25 | |||
26 | /** |
||
27 | * @property string $role |
||
28 | */ |
||
29 | private $role = null; |
||
30 | |||
31 | /** |
||
32 | * @property string $multiplicity |
||
33 | */ |
||
34 | private $multiplicity = null; |
||
35 | |||
36 | /** |
||
37 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edm\TDocumentationType $documentation |
||
38 | */ |
||
39 | private $documentation = null; |
||
40 | |||
41 | /** |
||
42 | * Gets as type |
||
43 | * |
||
44 | * @return string |
||
45 | */ |
||
46 | public function getType() |
||
50 | |||
51 | /** |
||
52 | * Sets a new type |
||
53 | * |
||
54 | * @param string $type |
||
55 | * @return self |
||
56 | */ |
||
57 | public function setType($type) |
||
62 | |||
63 | /** |
||
64 | * Gets as role |
||
65 | * |
||
66 | * @return string |
||
67 | */ |
||
68 | public function getRole() |
||
72 | |||
73 | /** |
||
74 | * Sets a new role |
||
75 | * |
||
76 | * @param string $role |
||
77 | * @return self |
||
78 | */ |
||
79 | public function setRole($role) |
||
84 | |||
85 | /** |
||
86 | * Gets as multiplicity |
||
87 | * |
||
88 | * @return string |
||
89 | */ |
||
90 | public function getMultiplicity() |
||
94 | |||
95 | /** |
||
96 | * Sets a new multiplicity |
||
97 | * |
||
98 | * @param string $multiplicity |
||
99 | * @return self |
||
100 | */ |
||
101 | public function setMultiplicity($multiplicity) |
||
106 | |||
107 | /** |
||
108 | * Gets as documentation |
||
109 | * |
||
110 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TDocumentationType |
||
111 | */ |
||
112 | public function getDocumentation() |
||
116 | |||
117 | /** |
||
118 | * Sets a new documentation |
||
119 | * |
||
120 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TDocumentationType $documentation |
||
121 | * @return self |
||
122 | */ |
||
123 | public function setDocumentation(TDocumentationType $documentation) |
||
128 | |||
129 | public function isOK(&$msg = null) |
||
152 | } |
||
153 |