Flowdock
method

define_attr_accessor

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::Mapping
define_attr_accessor(obj, name, getterproc, setterproc = nil) public

No documentation

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

Hide source
# File lib/soap/mapping/mapping.rb, line 313
  def self.define_attr_accessor(obj, name, getterproc, setterproc = nil)
    define_singleton_method(obj, name, &getterproc)
    define_singleton_method(obj, name + '=', &setterproc) if setterproc
  end
Register or log in to add new notes.