# File nqxml/entities.rb, line 69
 def attributesToXML
	    return '' if @attrs.nil?
	    str = ''
	    @attrs.each { | key, val |
		str << " #{key}=\#{NQXML.encode(val.to_s)}\"
	    }
	    return str
	end