1 | <?php |
||
15 | class TEntitySetReferenceExpressionType extends IsOK |
||
16 | { |
||
17 | use IsOKToolboxTrait, TQualifiedNameTrait; |
||
18 | /** |
||
19 | * @property string $entitySet |
||
20 | */ |
||
21 | private $entitySet = null; |
||
22 | |||
23 | /** |
||
24 | * Gets as entitySet |
||
25 | * |
||
26 | * @return string |
||
27 | */ |
||
28 | public function getEntitySet() |
||
32 | |||
33 | /** |
||
34 | * Sets a new entitySet |
||
35 | * |
||
36 | * @param string $entitySet |
||
37 | * @return self |
||
38 | */ |
||
39 | public function setEntitySet($entitySet) |
||
44 | |||
45 | public function isOK(&$msg = null) |
||
53 | } |
||
54 |