id = $id; } /** * @return mixed */ public function getId() { return $this->id; } /** * @param boolean $isChecked */ public function setIsChecked( $isChecked ) { $this->isChecked = $isChecked; } /** * @return boolean */ public function getIsChecked() { return $this->isChecked; } /** * @param mixed $label */ public function setLabel( $label ) { $this->label = $label; } /** * @return mixed */ public function getLabel() { return $this->label; } /** * @param string $type */ public function setType( $type ) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } }