# File nqxml/entities.rb, line 80
 def attributesToString
	    return '' if @attrs.nil?
	    str = ''
	    @attrs.each { | key, val |
		str << " #{key}=\#{val.to_s}\"
	    }
	    return str
	end