// Switch to Mata interpreter/compiler mata: // Drops class object if it already exists // mata drop img() // Definition of HTML Tag img Mata Class // Defines an image// Information retrieved from http://www.w3schools.com/tags/tag_img.asp class img extends htmlglobal { // Define private member variables private: // Static/final variables static string scalar opens, opene, close // String scalar attributes string scalar htmlalign, htmlalt, htmlborder, htmlcrossorigin, htmlheight, htmlhspace, htmlismap, htmllongdesc, htmlsrc, htmlusemap, htmlvspace, htmlwidth // Make class args non-static to prevent assignment of class args to all instances of class string scalar classargs // Define public members/methods public: // Class constructor method void new() // Setter methods class img scalar setClassArgs(), setAlign(), setAlt(), setBorder(), setCrossorigin(), setHeight(), setHspace(), setIsmap(), setLongdesc(), setSrc(), setUsemap(), setVspace(), setWidth() // Getter methods string scalar getOpens(), getOpene(), getClose(), print(), getClassArgs(), getAlign(), getAlt(), getBorder(), getCrossorigin(), getHeight(), getHspace(), getIsmap(), getLongdesc(), getSrc(), getUsemap(), getVspace(), getWidth() } // End of class declaration // Class constructor method declaration void img::new() { // Defines the start of the opening tag for the class this.opens = " character to allow attributes return(this.opens) } // End of getter method for opens member of class img // Getter method for opening bracket closing character string scalar img::getOpene() { // Returns the closing character for the opening bracket return(this.opene) } // End of getter method for opene member of class img // Getter method for closing bracket string scalar img::getClose() { // Returns the closing bracket/tag return(this.close) } // End of getter method for close member of class img // Getter method for class arguments string scalar img::getClassArgs() { // Returns the class arguments that appear between the HTML tags return(this.classargs) } // End of getter method for class arguments member of class img // Getter method for align member variable string scalar img::getAlign() { // Returns the align variable return(this.htmlalign) } // End of getter method for align member of class img // Getter method for alt member variable string scalar img::getAlt() { // Returns the alt variable return(this.htmlalt) } // End of getter method for alt member of class img // Getter method for border member variable string scalar img::getBorder() { // Returns the border variable return(this.htmlborder) } // End of getter method for border member of class img // Getter method for crossorigin member variable string scalar img::getCrossorigin() { // Returns the crossorigin variable return(this.htmlcrossorigin) } // End of getter method for crossorigin member of class img // Getter method for height member variable string scalar img::getHeight() { // Returns the height variable return(this.htmlheight) } // End of getter method for height member of class img // Getter method for hspace member variable string scalar img::getHspace() { // Returns the hspace variable return(this.htmlhspace) } // End of getter method for hspace member of class img // Getter method for ismap member variable string scalar img::getIsmap() { // Returns the ismap variable return(this.htmlismap) } // End of getter method for ismap member of class img // Getter method for longdesc member variable string scalar img::getLongdesc() { // Returns the longdesc variable return(this.htmllongdesc) } // End of getter method for longdesc member of class img // Getter method for src member variable string scalar img::getSrc() { // Returns the src variable return(this.htmlsrc) } // End of getter method for src member of class img // Getter method for usemap member variable string scalar img::getUsemap() { // Returns the usemap variable return(this.htmlusemap) } // End of getter method for usemap member of class img // Getter method for vspace member variable string scalar img::getVspace() { // Returns the vspace variable return(this.htmlvspace) } // End of getter method for vspace member of class img // Getter method for width member variable string scalar img::getWidth() { // Returns the width variable return(this.htmlwidth) } // End of getter method for width member of class img // Get the HTML tag w/attributes and arguments string scalar img::print() { // Create local variables to piece together return string string scalar open, args, close // Create opening string open = getOpens() + getAlign() + getAlt() + getBorder() + getCrossorigin() + getHeight() + getHspace() + getIsmap() + getLongdesc() + getSrc() + getUsemap() + getVspace() + getWidth() + globalAttrs() + getOpene() // Get class arguments args = getClassArgs() // Get closing tag close = getClose() // Return the complete HTML string return(char((10)) + subinstr(open, " >", ">") + args + close + char((10))) } // End of print method for class img // End of Mata session end