+ return "<IMG$attrs/>";
+ }
+ // -X2C
+
+ // +X2C Operation 217
+ /**
+ * Gets image location.
+ *
+ * @return string
+ * @access public
+ */
+ function getSrc()// ~X2C
+ {
+ return $this->getAttribute('src');
+ }
+ // -X2C
+
+ // +X2C Operation 218
+ /**
+ * Sets image location.
+ *
+ * @param string $src Image location.
+ *
+ * @return void
+ * @access public
+ */
+ function setSrc($src)// ~X2C
+ {
+ $this->updateAttributes(array('src' => $src));
+ }
+ // -X2C
+
+ // +X2C Operation 219
+ /**
+ * Gets image alternate text.
+ *
+ * @return string
+ * @access public
+ */
+ function getAlt()// ~X2C
+ {
+ return $this->getAttribute('alt');
+ }
+ // -X2C
+
+ // +X2C Operation 220
+ /**
+ * Sets image alternate text.
+ *
+ * @param string $alt Alternate text.
+ *
+ * @return void
+ * @access public
+ */
+ function setAlt($alt)// ~X2C
+ {
+ $this->updateAttributes(array('alt' => $alt));