_name; } /** * Sets the name * * @param string $name name * * @return void */ public function setName($name) { $this->_name = $name; } /** * Gets the text * * @return string */ public function getText() { return $this->_text; } /** * Sets the text * * @param string $text text * * @return void */ public function setText($text) { $this->_text = $text; } /** * Gets the force parameter * * @return string */ public function getForce() { return $this->_force; } /** * Sets the force paramter * * @param string $force force parameter * * @return void */ public function setForce($force) { $this->_force = $force; } /** * Returns the property type ( either "options", or "plugin" ). * * @return string */ public function getPropertyType() { return "options"; } } ?>