setValue($value); } /** * Gets Leaf object value * @method getValue * @returns value of the object */ function getValue() { return $this->value; } /** * Sets Leaf object to the specified value * @method setValue * @param mixed value * @returns none */ function setValue($value) { $this->value = $value; } } ?>