class Jabber::RPC::IqQueryRPC

Constants

NS_RPC

Public Instance Methods

typed_add(e) click to toggle source

TODO: Is #typed_add with a String right here?

Calls superclass method
# File lib/xmpp4r/rpc/iq/rpc.rb, line 14
def typed_add(e)
  if e.kind_of? String
    typed_add(REXML::Document.new(e).root)
  else
    super
  end
end