id; } /** * @return mixed */ public function getName() { return $this->name; } /** * @param mixed $name * @return Parameter */ public function setName($name) { $this->name = $name; return $this; } /** * @return mixed */ public function getValue() { return $this->value; } /** * @param mixed $value * @return Parameter */ public function setValue($value) { $this->value = $value; return $this; } }