1 | <?php |
||
14 | class TConditionType extends IsOK |
||
15 | { |
||
16 | use TSimpleIdentifierTrait; |
||
17 | /** |
||
18 | * @property string $value |
||
19 | */ |
||
20 | private $value = null; |
||
21 | |||
22 | /** |
||
23 | * @property string $name |
||
24 | */ |
||
25 | private $name = null; |
||
26 | |||
27 | /** |
||
28 | * @property string $columnName |
||
29 | */ |
||
30 | private $columnName = null; |
||
31 | |||
32 | /** |
||
33 | * @property boolean $isNull |
||
34 | */ |
||
35 | private $isNull = null; |
||
36 | |||
37 | /** |
||
38 | * Gets as value |
||
39 | * |
||
40 | * @return string |
||
41 | */ |
||
42 | public function getValue() |
||
46 | |||
47 | /** |
||
48 | * Sets a new value |
||
49 | * |
||
50 | * @param string $value |
||
51 | * @return self |
||
52 | */ |
||
53 | public function setValue($value) |
||
58 | |||
59 | /** |
||
60 | * Gets as name |
||
61 | * |
||
62 | * @return string |
||
63 | */ |
||
64 | public function getName() |
||
68 | |||
69 | /** |
||
70 | * Sets a new name |
||
71 | * |
||
72 | * @param string $name |
||
73 | * @return self |
||
74 | */ |
||
75 | public function setName($name) |
||
80 | |||
81 | /** |
||
82 | * Gets as columnName |
||
83 | * |
||
84 | * @return string |
||
85 | */ |
||
86 | public function getColumnName() |
||
90 | |||
91 | /** |
||
92 | * Sets a new columnName |
||
93 | * |
||
94 | * @param string $columnName |
||
95 | * @return self |
||
96 | */ |
||
97 | public function setColumnName($columnName) |
||
102 | |||
103 | /** |
||
104 | * Gets as isNull |
||
105 | * |
||
106 | * @return boolean |
||
107 | */ |
||
108 | public function getIsNull() |
||
112 | |||
113 | /** |
||
114 | * Sets a new isNull |
||
115 | * |
||
116 | * @param boolean $isNull |
||
117 | * @return self |
||
118 | */ |
||
119 | public function setIsNull($isNull) |
||
124 | |||
125 | public function isOK(&$msg = null) |
||
151 | } |
||
152 |