/**
 * @type {SystemMessage}
 * @author 钟军锐 August.R@263.net
 */

function SystemMessage(){
	if(typeof SystemMessage._initialized == "undefined"){
		SystemMessage.prototype.root = "/Message";
		SystemMessage.prototype.msg = "String/text()";
		SystemMessage.prototype.code = "Int/text()"
		SystemMessage.prototype.toString = function(){
			return this.msg;
		}
	}
}

