In: |
soap/encodingstyle/literalHandler.rb
|
Parent: | SOAPTemporalObject |
# File soap/encodingstyle/literalHandler.rb, line 95 def initialize(handler, elename) super() @handler = handler @elename = elename end
# File soap/encodingstyle/literalHandler.rb, line 115 def as_nil o = SOAPNil.decode(@elename) o.parent = @parent @handler.decode_parent(@parent, o) o end
# File soap/encodingstyle/literalHandler.rb, line 108 def as_string o = SOAPString.decode(@elename) o.parent = @parent @handler.decode_parent(@parent, o) o end