| Total Complexity | 5 |
| Total Lines | 54 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class SearchLayoutButtonsDisplayed |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var boolean |
||
| 9 | */ |
||
| 10 | protected $applicable = null; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var SearchLayoutButton[] |
||
| 14 | */ |
||
| 15 | protected $buttons = null; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param boolean $applicable |
||
| 19 | */ |
||
| 20 | public function __construct($applicable = null) |
||
| 21 | { |
||
| 22 | $this->applicable = $applicable; |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return boolean |
||
| 27 | */ |
||
| 28 | public function getApplicable() |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param boolean $applicable |
||
| 35 | * @return \SForce\Wsdl\SearchLayoutButtonsDisplayed |
||
| 36 | */ |
||
| 37 | public function setApplicable($applicable) |
||
| 38 | { |
||
| 39 | $this->applicable = $applicable; |
||
| 40 | return $this; |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return SearchLayoutButton[] |
||
| 45 | */ |
||
| 46 | public function getButtons() |
||
| 47 | { |
||
| 48 | return $this->buttons; |
||
| 49 | } |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @param SearchLayoutButton[] $buttons |
||
| 53 | * @return \SForce\Wsdl\SearchLayoutButtonsDisplayed |
||
| 54 | */ |
||
| 55 | public function setButtons(array $buttons = null) |
||
| 59 | } |
||
| 60 | } |
||
| 61 |