/***********************************************************************************************************
 * com.oclib.javascript.lang.root.20061018.Root
 * Location: http://www.oclib.com/library/com/oclib/javascript/lang/Root.js
 * Version Location: http://www.oclib.com/library/com/oclib/javascript/lang/root/20061018/index.html
 * Index Version Location: http://www.oclib.com/library/com/oclib/javascript/lang/root/20061018/index.html
 * © Open Class Library (http://www.oclib.com/)
***********************************************************************************************************/
var Root = function() {};

Root.prototype.className = "Root"; 
 Root.prototype.getClassName = function () {return this.className;};
Root.prototype.created = "20061018"; 
 Root.prototype.getCreated = function () {return this.created;};
Root.prototype.debugging = false;
 Root.prototype.getDebugging = function () {return this.version;};
 Root.prototype.mustDebug = function () {if(this.getDebugging() && this.getLog()) {return true;} else {return false;};};
 Root.prototype.setDebugging = function (debugging) {this.debugging = debugging; return 1;};
Root.prototype.rootLog; 
 Root.prototype.getLog = function () {return this.rootLog;};
 Root.prototype.setLog = function (rootLog) {this.rootLog = rootLog; return 1;};
Root.prototype.tracing = false;
 Root.prototype.getTracing = function () {return this.tracing;};
 Root.prototype.mustTrace = function () {if(this.getTracing() && this.getLog()) {return true;} else {return false;};};
 Root.prototype.setTracing = function (tracing) {this.tracing = tracing; return 1;};
Root.prototype.version = "20061018"; 
 Root.prototype.getVersion = function () {return this.version;};
 Root.prototype.getClassId = function () {return this.created+this.version;};
