method

add_attributes2plainobj

add_attributes2plainobj(node, obj)
private

No documentation available.

# File lib/soap/mapping/wsdlliteralregistry.rb, line 354
  def add_attributes2plainobj(node, obj)
    return if node.extraattr.empty?
    define_xmlattr(obj)
    node.extraattr.each do |qname, value|
      obj.__xmlattr[qname] = value
      define_xmlattr_accessor(obj, qname)
    end
  end