In Files

  • xmlrpc/parser.rb

XMLRPC::XMLParser::LibXMLStreamParser::LibXMLStreamListener

Public Instance Methods

method_missing(*a) click to toggle source
 
               # File xmlrpc/parser.rb, line 615
def method_missing(*a)
end
            
on_end_element_ns(name, prefix, uri) click to toggle source
 
               # File xmlrpc/parser.rb, line 608
def on_end_element_ns(name, prefix, uri)
  endElement(name)
end
            
on_start_element_ns(name, attributes, prefix, uri, namespaces) click to toggle source
 
               # File xmlrpc/parser.rb, line 604
def on_start_element_ns(name, attributes, prefix, uri, namespaces)
  startElement(name)
end
            
parse(str) click to toggle source
 
               # File xmlrpc/parser.rb, line 618
def parse(str)
  parser = LibXML::XML::SaxParser.string(str)
  parser.callbacks = self
  parser.parse()
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.