| Class | SOAP::EncodingStyle::LiteralHandler::SOAPUnknown |
| In: |
soap/encodingstyle/literalHandler.rb
|
| Parent: | SOAPTemporalObject |
# File soap/encodingstyle/literalHandler.rb, line 105 def initialize(handler, elename, extraattr) super() @handler = handler @elename = elename @extraattr = extraattr end
# File soap/encodingstyle/literalHandler.rb, line 112 def as_element o = SOAPElement.decode(@elename) o.parent = @parent o.extraattr.update(@extraattr) @handler.decode_parent(@parent, o) o end
# File soap/encodingstyle/literalHandler.rb, line 128 def as_nil o = SOAPNil.decode(@elename) o.parent = @parent o.extraattr.update(@extraattr) @handler.decode_parent(@parent, o) o end
ruby-doc.org is a community service provided by Happy Camper Studios, a Phoenix, Arizona, Ruby application development company.
Documentation content on ruby-doc.org is provided by remarkable members of the Ruby community.
For more information on the Ruby programming language, visit ruby-lang.org.
Want to help improve Ruby's API docs? See Ruby Documentation Guidelines.