In: |
soap/encodingstyle/soapHandler.rb
|
Parent: | SOAPTemporalObject |
# File soap/encodingstyle/soapHandler.rb, line 110 def initialize(handler, elename, type, extraattr) super() @handler = handler @elename = elename @type = type @extraattr = extraattr @definedtype = nil end
# File soap/encodingstyle/soapHandler.rb, line 141 def as_nil o = SOAPNil.decode(@elename) o.id = @id o.root = @root o.parent = @parent o.position = @position o.extraattr.update(@extraattr) @handler.decode_parent(@parent, o) o end
# File soap/encodingstyle/soapHandler.rb, line 130 def as_string o = SOAPString.decode(@elename) o.id = @id o.root = @root o.parent = @parent o.position = @position o.extraattr.update(@extraattr) @handler.decode_parent(@parent, o) o end