# File nqxml/entities.rb, line 113
 def writeXMLTo(io, beforeChildren=true)
	    if beforeChildren
		io << "<#{name}" << attributesToXML() << ">"
	    else
		io << "</#{name}>"
	    end
	end