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) |
||
56 | |||
57 | /** |
||
58 | * Gets as options |
||
59 | * |
||
60 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edmx\TOptionsType |
||
61 | */ |
||
62 | public function getOptions() |
||
66 | |||
67 | /** |
||
68 | * Sets a new options |
||
69 | * |
||
70 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edmx\TOptionsType $options |
||
71 | * @return self |
||
72 | */ |
||
73 | public function setOptions(TOptionsType $options) |
||
82 | |||
83 | /** |
||
84 | * Adds as diagram |
||
85 | * |
||
86 | * @return self |
||
87 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDiagramType $diagram |
||
88 | */ |
||
89 | public function addToDiagrams(TDiagramType $diagram) |
||
98 | |||
99 | /** |
||
100 | * isset diagrams |
||
101 | * |
||
102 | * @param scalar $index |
||
103 | * @return boolean |
||
104 | */ |
||
105 | public function issetDiagrams($index) |
||
109 | |||
110 | /** |
||
111 | * unset diagrams |
||
112 | * |
||
113 | * @param scalar $index |
||
114 | * @return void |
||
115 | */ |
||
116 | public function unsetDiagrams($index) |
||
120 | |||
121 | /** |
||
122 | * Gets as diagrams |
||
123 | * |
||
124 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDiagramType[] |
||
125 | */ |
||
126 | public function getDiagrams() |
||
130 | |||
131 | /** |
||
132 | * Sets a new diagrams |
||
133 | * |
||
134 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edmx\TDiagramType[] $diagrams |
||
135 | * @return self |
||
136 | */ |
||
137 | public function setDiagrams(array $diagrams) |
||
149 | |||
150 | public function isOK(&$msg = null) |
||
171 | } |
||
172 |