1 | <?php |
||
15 | class TMappingFragmentType extends IsOK |
||
16 | { |
||
17 | use TPropertyGroup; |
||
18 | /** |
||
19 | * @property string $storeEntitySet |
||
20 | */ |
||
21 | private $storeEntitySet = null; |
||
22 | |||
23 | /** |
||
24 | * @property boolean $makeColumnsDistinct |
||
25 | */ |
||
26 | private $makeColumnsDistinct = null; |
||
27 | |||
28 | /** |
||
29 | * Gets as storeEntitySet |
||
30 | * |
||
31 | * @return string |
||
32 | */ |
||
33 | public function getStoreEntitySet() |
||
37 | |||
38 | /** |
||
39 | * Sets a new storeEntitySet |
||
40 | * |
||
41 | * @param string $storeEntitySet |
||
42 | * @return self |
||
43 | */ |
||
44 | public function setStoreEntitySet($storeEntitySet) |
||
49 | |||
50 | /** |
||
51 | * Gets as makeColumnsDistinct |
||
52 | * |
||
53 | * @return boolean |
||
54 | */ |
||
55 | public function getMakeColumnsDistinct() |
||
59 | |||
60 | /** |
||
61 | * Sets a new makeColumnsDistinct |
||
62 | * |
||
63 | * @param boolean $makeColumnsDistinct |
||
64 | * @return self |
||
65 | */ |
||
66 | public function setMakeColumnsDistinct($makeColumnsDistinct) |
||
71 | |||
72 | public function isOK(&$msg = null) |
||
83 | } |
||
84 |