# File nqxml/document.rb, line 83
 def addChild(entity)
	    if entity.nil?
		raise ArgumentError, "node's entity must not be nil", caller
	    end

	    node = Node.new(entity, self)
	    @children << node
	    return node
	end