1 | <?php |
||
14 | class TEdmxType extends IsOK |
||
15 | { |
||
16 | |||
17 | /** |
||
18 | * @property string $version |
||
19 | */ |
||
20 | private $version = null; |
||
21 | |||
22 | /** |
||
23 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDesignerType $designer |
||
24 | */ |
||
25 | private $designer = null; |
||
26 | |||
27 | /** |
||
28 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edmx\TRuntimeType $runtime |
||
29 | */ |
||
30 | private $runtime = null; |
||
31 | |||
32 | /** |
||
33 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDataServicesType $dataServiceType |
||
34 | */ |
||
35 | private $dataServiceType = null; |
||
36 | |||
37 | /** |
||
38 | * Gets as version |
||
39 | * |
||
40 | * @return string |
||
41 | */ |
||
42 | public function getVersion() |
||
46 | |||
47 | /** |
||
48 | * Sets a new version |
||
49 | * |
||
50 | * @param string $version |
||
51 | * @return self |
||
52 | */ |
||
53 | public function setVersion($version) |
||
62 | |||
63 | /** |
||
64 | * Gets data service type |
||
65 | * |
||
66 | * @return TDataServicesType |
||
67 | */ |
||
68 | public function getDataServiceType() |
||
72 | |||
73 | /** |
||
74 | * Sets a new data service type |
||
75 | * |
||
76 | * @param TDataServicesType $dataServiceType |
||
77 | * @return self |
||
78 | */ |
||
79 | public function setDataServiceType(TDataServicesType $dataServiceType) |
||
88 | |||
89 | /** |
||
90 | * Gets as designer |
||
91 | * |
||
92 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDesignerType |
||
93 | */ |
||
94 | public function getDesigner() |
||
98 | |||
99 | /** |
||
100 | * Sets a new designer |
||
101 | * |
||
102 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDesignerType $designer |
||
103 | * @return self |
||
104 | */ |
||
105 | public function setDesigner(TDesignerType $designer) |
||
114 | |||
115 | /** |
||
116 | * Gets as runtime |
||
117 | * |
||
118 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edmx\TRuntimeType |
||
119 | */ |
||
120 | public function getRuntime() |
||
124 | |||
125 | /** |
||
126 | * Sets a new runtime |
||
127 | * |
||
128 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edmx\TRuntimeType $runtime |
||
129 | * @return self |
||
130 | */ |
||
131 | public function setRuntime(TRuntimeType $runtime) |
||
140 | |||
141 | public function isOK(&$msg = null) |
||
164 | } |
||
165 |