Flowdock
method

__set_xmlele_value

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::Mapping::Object
__set_xmlele_value(key, org, value) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/soap/mapping/registry.rb, line 159
  def __set_xmlele_value(key, org, value)
    case @__xmlele_type[key]
    when :multi
      org << value
      org
    when :single
      @__xmlele_type[key] = :multi
      [org, value]
    else
      raise RuntimeError.new("unknown type")
    end
  end
Register or log in to add new notes.