var HTML = function(html) {
}

//-------------------------------------------------------------------------------
HTML.prototype.completionStatus = 0;
HTML.prototype.getCompletionStatus = function () {return this.completionStatus;};
HTML.prototype.setCompletionStatus = function (completionStatus) {this.completionStatus = completionStatus;};
//-------------------------------------------------------------------------------
HTML.prototype.debugging = false;
HTML.prototype.getDebugging = function () {return this.debugging;};
HTML.prototype.setDebugging = function (debugging) {this.debugging = debugging;};
//-------------------------------------------------------------------------------
HTML.prototype.htmlLog;
HTML.prototype.getLog = function () {return this.htmlLog;};
HTML.prototype.setLog = function (htmlLog) {this.htmlLog = htmlLog;};
//-------------------------------------------------------------------------------
HTML.prototype.html;
HTML.prototype.getHTML = function() {return this.html;}
HTML.prototype.setHTML = function(html) {this.html = html; return 1;}

