// Switch to Mata interpreter/compiler mata: // Drops class object if it already exists // mata drop form() // Definition of HTML Tag form Mata Class // Defines an HTML form for user input// Information retrieved from http://www.w3schools.com/tags/tag_form.asp class form extends htmlglobal { // Define private member variables private: // Static/final variables static string scalar opens, opene, close // String scalar attributes string scalar htmlaccept, htmlaccept_charset, htmlaction, htmlautocomplete, htmlenctype, htmlmethod, htmlname, htmlnovalidate, htmltarget // 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 form scalar setClassArgs(), setAccept(), setAccept_Charset(), setAction(), setAutocomplete(), setEnctype(), setMethod(), setName(), setNovalidate(), setTarget() // Getter methods string scalar getOpens(), getOpene(), getClose(), print(), getClassArgs(), getAccept(), getAccept_Charset(), getAction(), getAutocomplete(), getEnctype(), getMethod(), getName(), getNovalidate(), getTarget() } // End of class declaration // Class constructor method declaration void form::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 form // Getter method for opening bracket closing character string scalar form::getOpene() { // Returns the closing character for the opening bracket return(this.opene) } // End of getter method for opene member of class form // Getter method for closing bracket string scalar form::getClose() { // Returns the closing bracket/tag return(this.close) } // End of getter method for close member of class form // Getter method for class arguments string scalar form::getClassArgs() { // Returns the class arguments that appear between the HTML tags return(this.classargs) } // End of getter method for class arguments member of class form // Getter method for accept member variable string scalar form::getAccept() { // Returns the accept variable return(this.htmlaccept) } // End of getter method for accept member of class form // Getter method for accept_charset member variable string scalar form::getAccept_Charset() { // Returns the accept_charset variable return(this.htmlaccept_charset) } // End of getter method for accept_charset member of class form // Getter method for action member variable string scalar form::getAction() { // Returns the action variable return(this.htmlaction) } // End of getter method for action member of class form // Getter method for autocomplete member variable string scalar form::getAutocomplete() { // Returns the autocomplete variable return(this.htmlautocomplete) } // End of getter method for autocomplete member of class form // Getter method for enctype member variable string scalar form::getEnctype() { // Returns the enctype variable return(this.htmlenctype) } // End of getter method for enctype member of class form // Getter method for method member variable string scalar form::getMethod() { // Returns the method variable return(this.htmlmethod) } // End of getter method for method member of class form // Getter method for name member variable string scalar form::getName() { // Returns the name variable return(this.htmlname) } // End of getter method for name member of class form // Getter method for novalidate member variable string scalar form::getNovalidate() { // Returns the novalidate variable return(this.htmlnovalidate) } // End of getter method for novalidate member of class form // Getter method for target member variable string scalar form::getTarget() { // Returns the target variable return(this.htmltarget) } // End of getter method for target member of class form // Get the HTML tag w/attributes and arguments string scalar form::print() { // Create local variables to piece together return string string scalar open, args, close // Create opening string open = getOpens() + getAccept() + getAccept_Charset() + getAction() + getAutocomplete() + getEnctype() + getMethod() + getName() + getNovalidate() + getTarget() + 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 form // End of Mata session end