// Generated by CoffeeScript 1.12.7(function(){varXMLNode,XMLText,extend=function(child,parent){for(varkeyinparent){if(hasProp.call(parent,key))child[key]=parent[key];}functionctor(){this.constructor=child;}ctor.prototype=parent.prototype;child.prototype=newctor();child.__super__=parent.prototype;returnchild;},hasProp={}.hasOwnProperty;XMLNode=require('./XMLNode');module.exports=XMLText=(function(superClass){extend(XMLText,superClass);functionXMLText(parent,text){XMLText.__super__.constructor.call(this,parent);if(text==null){thrownewError("Missing element text");}this.value=this.stringify.eleText(text);}XMLText.prototype.clone=function(){returnObject.create(this);};XMLText.prototype.toString=function(options){returnthis.options.writer.set(options).text(this);};returnXMLText;})(XMLNode);}).call(this);