1 | <?php |
||
7 | class Label |
||
8 | { |
||
9 | /** |
||
10 | * @var LabelName |
||
11 | */ |
||
12 | protected $labelName; |
||
13 | |||
14 | /** |
||
15 | * @var bool |
||
16 | */ |
||
17 | protected $visible; |
||
18 | |||
19 | public function __construct($value, $visible = true) |
||
33 | |||
34 | /** |
||
35 | * @param Label $label |
||
36 | * @return bool |
||
37 | */ |
||
38 | public function equals(Label $label) |
||
45 | |||
46 | /** |
||
47 | * @return boolean |
||
48 | */ |
||
49 | public function isVisible() |
||
53 | |||
54 | public function __toString() |
||
58 | } |
||
59 |