1 | <?php |
||
12 | class TDesignerType extends IsOK |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edmx\TConnectionType $connection |
||
17 | */ |
||
18 | private $connection = null; |
||
19 | |||
20 | /** |
||
21 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edmx\TOptionsType $options |
||
22 | */ |
||
23 | private $options = null; |
||
24 | |||
25 | /** |
||
26 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDiagramType[] $diagrams |
||
27 | */ |
||
28 | private $diagrams = []; |
||
29 | |||
30 | /** |
||
31 | * Gets as connection |
||
32 | * |
||
33 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edmx\TConnectionType |
||
34 | */ |
||
35 | public function getConnection() |
||
39 | |||
40 | /** |
||
41 | * Sets a new connection |
||
42 | * |
||
43 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edmx\TConnectionType $connection |
||
44 | * @return self |
||
45 | */ |
||
46 | public function setConnection(TConnectionType $connection) |
||
55 | |||
56 | /** |
||
57 | * Gets as options |
||
58 | * |
||
59 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edmx\TOptionsType |
||
60 | */ |
||
61 | public function getOptions() |
||
65 | |||
66 | /** |
||
67 | * Sets a new options |
||
68 | * |
||
69 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edmx\TOptionsType $options |
||
70 | * @return self |
||
71 | */ |
||
72 | public function setOptions(TOptionsType $options) |
||
81 | |||
82 | /** |
||
83 | * Adds as diagram |
||
84 | * |
||
85 | * @return self |
||
86 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDiagramType $diagram |
||
87 | */ |
||
88 | public function addToDiagrams(TDiagramType $diagram) |
||
97 | |||
98 | /** |
||
99 | * isset diagrams |
||
100 | * |
||
101 | * @param scalar $index |
||
102 | * @return boolean |
||
103 | */ |
||
104 | public function issetDiagrams($index) |
||
108 | |||
109 | /** |
||
110 | * unset diagrams |
||
111 | * |
||
112 | * @param scalar $index |
||
113 | * @return void |
||
114 | */ |
||
115 | public function unsetDiagrams($index) |
||
119 | |||
120 | /** |
||
121 | * Gets as diagrams |
||
122 | * |
||
123 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDiagramType[] |
||
124 | */ |
||
125 | public function getDiagrams() |
||
129 | |||
130 | /** |
||
131 | * Sets a new diagrams |
||
132 | * |
||
133 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDiagramType[] $diagrams |
||
134 | * @return self |
||
135 | */ |
||
136 | public function setDiagrams(array $diagrams) |
||
149 | |||
150 | public function isOK(&$msg = null) |
||
172 | } |
||
173 |