+ /**
+ * Sets the element value
+ * @access public
+ * @return string
+ */
+ function setValue($value) {
+ $this->_selected = $value;
+ } //end func getName
+
+ /**
+ * Sets the element value
+ * @access public
+ * @return string
+ */
+ function setSelected($value) {
+ $this->_selected = $value;
+ } //end func getName
+
+ /**
+ * Returns the element value
+ * @access public
+ * @return string
+ */
+ function getValue() {
+ return $this->_selected;
+ } //end func getName
+
+ /**
+ * Returns the element value
+ * @access public
+ * @return string
+ */
+ function getSelected() {
+ return $this->_selected;
+ } //end func getName
+