# File lib/soap/encodingstyle/soapHandler.rb, line 140 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 lib/soap/encodingstyle/soapHandler.rb, line 126 def as_string if @extraattr[XSD::AttrNilName] == 'true' return as_nil end 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
# File lib/soap/encodingstyle/soapHandler.rb, line 112 def as_struct if @extraattr[XSD::AttrNilName] == 'true' return as_nil end o = SOAPStruct.decode(@elename, @type) o.id = @id o.root = @root o.parent = @parent o.position = @position o.extraattr.update(@extraattr) @handler.decode_parent(@parent, o) o end
Generated with the Darkfish Rdoc Generator 2.