# File lib/cfpropertylist/rbREXMLParser.rb, line 64
    def append_node(parent, child)
      if child.is_a?(String) then
        parent.add_text child
      else
        parent.elements << child
      end
      parent
    end