Class: XMLRPC::XMLParser::REXMLStreamParser::StreamListener

Inherits:
Object
  • Object
show all
Includes:
StreamParserMixin
Defined in:
lib/xmlrpc/parser.rb

Instance Attribute Summary

Attributes included from StreamParserMixin

#fault, #method_name, #params

Instance Method Summary collapse

Methods included from StreamParserMixin

#character, #endElement, #initialize, #startElement

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(*a) ⇒ Object



712
713
714
# File 'lib/xmlrpc/parser.rb', line 712

def method_missing(*a)
  # ignore
end

Instance Method Details

#parse(str) ⇒ Object



716
717
718
# File 'lib/xmlrpc/parser.rb', line 716

def parse(str)
   parser = REXML::Document.parse_stream(str, self)
end