| Class | SOAP::EncodingStyle::Handler |
| In: |
soap/encodingstyle/handler.rb
|
| Parent: | Object |
| charset | [R] | |
| generate_explicit_type | [RW] |
# File soap/encodingstyle/handler.rb, line 32 def each @@handlers.each do |key, value| yield(value) end end
# File soap/encodingstyle/handler.rb, line 51 def initialize(charset) @charset = charset @generate_explicit_type = true @decode_typemap = nil end
# File soap/encodingstyle/handler.rb, line 83 def decode_tag_end(ns, name) raise NotImplementError.new('Method decode_tag_end must be defined in derived class.') end
# File soap/encodingstyle/handler.rb, line 87 def decode_text(ns, text) raise NotImplementError.new('Method decode_text must be defined in derived class.') end
# File soap/encodingstyle/handler.rb, line 47 def decode_typemap=(definedtypes) @decode_typemap = definedtypes end
encode interface.
Returns a XML instance as a string.
# File soap/encodingstyle/handler.rb, line 61 def encode_data(generator, ns, data, parent) raise NotImplementError end
ruby-doc.org is hosted and maintained by James Britt and Happy Camper Studios, a Ruby application development company in Phoenix, Arizona. The site was created in 2002 as part of the Ruby Documentation Project to promote the Ruby language and to help other Ruby hackers.
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.