1 | <?php |
||
7 | trait TDerivableTypeAttributesTrait |
||
8 | { |
||
9 | use TQualifiedNameTrait; |
||
10 | /** |
||
11 | * @property string $baseType |
||
12 | */ |
||
13 | private $baseType = null; |
||
14 | |||
15 | /** |
||
16 | * @property boolean $abstract |
||
17 | */ |
||
18 | private $abstract = false; |
||
19 | |||
20 | /** |
||
21 | * Gets as baseType |
||
22 | * |
||
23 | * @return string |
||
24 | */ |
||
25 | public function getBaseType() |
||
29 | |||
30 | /** |
||
31 | * Sets a new baseType |
||
32 | * |
||
33 | * @param string $baseType |
||
34 | * @return self |
||
35 | */ |
||
36 | public function setBaseType($baseType) |
||
41 | |||
42 | /** |
||
43 | * Gets as abstract |
||
44 | * |
||
45 | * @return boolean |
||
46 | */ |
||
47 | public function getAbstract() |
||
51 | |||
52 | /** |
||
53 | * Sets a new abstract |
||
54 | * |
||
55 | * @param boolean $abstract |
||
56 | * @return self |
||
57 | */ |
||
58 | public function setAbstract($abstract) |
||
63 | |||
64 | public function isTDerivableTypeAttributesValid(&$msg) |
||
72 | } |
||
73 |