Flowdock
method

create_method_obj

Importance_0
v1_8_6_287 - Show latest stable - 0 notes - Class: SOAP::WSDLDriver::Servant__
create_method_obj(names, params) private

No documentation

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

Hide source
# File lib/soap/wsdlDriver.rb, line 440
    def create_method_obj(names, params)
      o = Object.new
      idx = 0
      while idx < params.length
        o.instance_variable_set('@' + names[idx], params[idx])
        idx += 1
      end
      o
    end
Register or log in to add new notes.