ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ConditionalFormatValueObject.php
Go to the documentation of this file.
1<?php
2
4
6{
7 private $type;
8
9 private $value;
10
11 private $cellFormula;
12
18 public function __construct($type, $value = null, $cellFormula = null)
19 {
20 $this->type = $type;
21 $this->value = $value;
22 $this->cellFormula = $cellFormula;
23 }
24
28 public function getType()
29 {
30 return $this->type;
31 }
32
36 public function setType($type)
37 {
38 $this->type = $type;
39
40 return $this;
41 }
42
46 public function getValue()
47 {
48 return $this->value;
49 }
50
54 public function setValue($value)
55 {
56 $this->value = $value;
57
58 return $this;
59 }
60
64 public function getCellFormula()
65 {
66 return $this->cellFormula;
67 }
68
73 {
74 $this->cellFormula = $cellFormula;
75
76 return $this;
77 }
78}
An exception for terminatinating execution or to throw for unit testing.
__construct($type, $value=null, $cellFormula=null)
ConditionalFormatValueObject constructor.