00001 var CustomType = module.exports = function(raw) {
00002 this.raw = raw
00003 }
00004
00005 CustomType.prototype.serialize = function(xml) {
00006 return xml.ele(this.tagName).txt(this.raw)
00007 }
00008
00009 CustomType.prototype.tagName = 'customType'
00010