_name = $name; $this->_value = $value; } public function& getValue() { return $this->_value; } public function setValue(&$value) { $this->_value = &$value; } public function __toString() { return $this->_name; } } ?>