1 | <?php |
||
13 | class TDesignerType extends IsOK |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edmx\TConnectionType $connection |
||
18 | */ |
||
19 | private $connection = null; |
||
20 | |||
21 | /** |
||
22 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edmx\TOptionsType $options |
||
23 | */ |
||
24 | private $options = null; |
||
25 | |||
26 | /** |
||
27 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDiagramType[] $diagrams |
||
28 | */ |
||
29 | private $diagrams = []; |
||
30 | |||
31 | /** |
||
32 | * Gets as connection |
||
33 | * |
||
34 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edmx\TConnectionType |
||
35 | */ |
||
36 | public function getConnection() |
||
40 | |||
41 | /** |
||
42 | * Sets a new connection |
||
43 | * |
||
44 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edmx\TConnectionType $connection |
||
45 | * @return self |
||
46 | */ |
||
47 | public function setConnection(TConnectionType $connection) |
||
52 | |||
53 | /** |
||
54 | * Gets as options |
||
55 | * |
||
56 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edmx\TOptionsType |
||
57 | */ |
||
58 | public function getOptions() |
||
62 | |||
63 | /** |
||
64 | * Sets a new options |
||
65 | * |
||
66 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edmx\TOptionsType $options |
||
67 | * @return self |
||
68 | */ |
||
69 | public function setOptions(TOptionsType $options) |
||
74 | |||
75 | /** |
||
76 | * Adds as diagram |
||
77 | * |
||
78 | * @return self |
||
79 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDiagramType $diagram |
||
80 | */ |
||
81 | public function addToDiagrams(TDiagramType $diagram) |
||
86 | |||
87 | /** |
||
88 | * isset diagrams |
||
89 | * |
||
90 | * @param scalar $index |
||
91 | * @return boolean |
||
92 | */ |
||
93 | public function issetDiagrams($index) |
||
97 | |||
98 | /** |
||
99 | * unset diagrams |
||
100 | * |
||
101 | * @param scalar $index |
||
102 | * @return void |
||
103 | */ |
||
104 | public function unsetDiagrams($index) |
||
108 | |||
109 | /** |
||
110 | * Gets as diagrams |
||
111 | * |
||
112 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDiagramType[] |
||
113 | */ |
||
114 | public function getDiagrams() |
||
118 | |||
119 | /** |
||
120 | * Sets a new diagrams |
||
121 | * |
||
122 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDiagramType[] $diagrams |
||
123 | * @return self |
||
124 | */ |
||
125 | public function setDiagrams(array $diagrams) |
||
130 | |||
131 | public function isOK(&$msg = null) |
||
152 | } |
||
153 |