// Switch to Mata interpreter/compiler mata: // Drops class object if it already exists // mata drop ol() // Definition of HTML Tag ol Mata Class // Defines an ordered list// Information retrieved from http://www.w3schools.com/tags/tag_ol.asp class ol extends htmlglobal { // Define private member variables private: // Static/final variables static string scalar opens, opene, close // String scalar attributes string scalar htmlcompact, htmlreversed, htmlstart, 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 ol scalar setClassArgs(), setCompact(), setReversed(), setStart(), setType() // Getter methods string scalar getOpens(), getOpene(), getClose(), print(), getClassArgs(), getCompact(), getReversed(), getStart(), getType() } // End of class declaration // Class constructor method declaration void ol::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 ol // Getter method for opening bracket closing character string scalar ol::getOpene() { // Returns the closing character for the opening bracket return(this.opene) } // End of getter method for opene member of class ol // Getter method for closing bracket string scalar ol::getClose() { // Returns the closing bracket/tag return(this.close) } // End of getter method for close member of class ol // Getter method for class arguments string scalar ol::getClassArgs() { // Returns the class arguments that appear between the HTML tags return(this.classargs) } // End of getter method for class arguments member of class ol // Getter method for compact member variable string scalar ol::getCompact() { // Returns the compact variable return(this.htmlcompact) } // End of getter method for compact member of class ol // Getter method for reversed member variable string scalar ol::getReversed() { // Returns the reversed variable return(this.htmlreversed) } // End of getter method for reversed member of class ol // Getter method for start member variable string scalar ol::getStart() { // Returns the start variable return(this.htmlstart) } // End of getter method for start member of class ol // Getter method for type member variable string scalar ol::getType() { // Returns the type variable return(this.htmltype) } // End of getter method for type member of class ol // Get the HTML tag w/attributes and arguments string scalar ol::print() { // Create local variables to piece together return string string scalar open, args, close // Create opening string open = getOpens() + getCompact() + getReversed() + getStart() + 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 ol // End of Mata session end