// Switch to Mata interpreter/compiler mata: // Drops class object if it already exists // mata drop link() // Definition of HTML Tag link Mata Class // Defines the relationship between a document and an external resource (most used to link to style sheets)// Information retrieved from http://www.w3schools.com/tags/tag_link.asp class link extends htmlglobal { // Define private member variables private: // Static/final variables static string scalar opens, opene, close // String scalar attributes string scalar htmlcharset, htmlcrossorigin, htmlhref, htmlhreflang, htmlmedia, htmlrel, htmlrev, htmlsizes, htmltarget, htmltype // 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 link scalar setClassArgs(), setCharset(), setCrossorigin(), setHref(), setHreflang(), setMedia(), setRel(), setRev(), setSizes(), setTarget(), setType() // Getter methods string scalar getOpens(), getOpene(), getClose(), print(), getClassArgs(), getCharset(), getCrossorigin(), getHref(), getHreflang(), getMedia(), getRel(), getRev(), getSizes(), getTarget(), getType() } // End of class declaration // Class constructor method declaration void link::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 link // Getter method for opening bracket closing character string scalar link::getOpene() { // Returns the closing character for the opening bracket return(this.opene) } // End of getter method for opene member of class link // Getter method for closing bracket string scalar link::getClose() { // Returns the closing bracket/tag return(this.close) } // End of getter method for close member of class link // Getter method for class arguments string scalar link::getClassArgs() { // Returns the class arguments that appear between the HTML tags return(this.classargs) } // End of getter method for class arguments member of class link // Getter method for charset member variable string scalar link::getCharset() { // Returns the charset variable return(this.htmlcharset) } // End of getter method for charset member of class link // Getter method for crossorigin member variable string scalar link::getCrossorigin() { // Returns the crossorigin variable return(this.htmlcrossorigin) } // End of getter method for crossorigin member of class link // Getter method for href member variable string scalar link::getHref() { // Returns the href variable return(this.htmlhref) } // End of getter method for href member of class link // Getter method for hreflang member variable string scalar link::getHreflang() { // Returns the hreflang variable return(this.htmlhreflang) } // End of getter method for hreflang member of class link // Getter method for media member variable string scalar link::getMedia() { // Returns the media variable return(this.htmlmedia) } // End of getter method for media member of class link // Getter method for rel member variable string scalar link::getRel() { // Returns the rel variable return(this.htmlrel) } // End of getter method for rel member of class link // Getter method for rev member variable string scalar link::getRev() { // Returns the rev variable return(this.htmlrev) } // End of getter method for rev member of class link // Getter method for sizes member variable string scalar link::getSizes() { // Returns the sizes variable return(this.htmlsizes) } // End of getter method for sizes member of class link // Getter method for target member variable string scalar link::getTarget() { // Returns the target variable return(this.htmltarget) } // End of getter method for target member of class link // Getter method for type member variable string scalar link::getType() { // Returns the type variable return(this.htmltype) } // End of getter method for type member of class link // Get the HTML tag w/attributes and arguments string scalar link::print() { // Create local variables to piece together return string string scalar open, args, close // Create opening string open = getOpens() + getCharset() + getCrossorigin() + getHref() + getHreflang() + getMedia() + getRel() + getRev() + getSizes() + getTarget() + getType() + 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 link // End of Mata session end