Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more

In Files

  • rss/xmlparser.rb

Parent

Included Modules

Class/Module Index [+]

Quicksearch

RSS::REXMLLikeXMLParser

Public Instance Methods

character(data) click to toggle source
 
               # File rss/xmlparser.rb, line 46
def character(data)
  @listener.text(data)
end
            
endElement(name) click to toggle source
 
               # File rss/xmlparser.rb, line 42
def endElement(name)
  @listener.tag_end(name)
end
            
listener=(listener) click to toggle source
 
               # File rss/xmlparser.rb, line 34
def listener=(listener)
  @listener = listener
end
            
processingInstruction(target, content) click to toggle source
 
               # File rss/xmlparser.rb, line 54
def processingInstruction(target, content)
  @listener.instruction(target, content)
end
            
startElement(name, attrs) click to toggle source
 
               # File rss/xmlparser.rb, line 38
def startElement(name, attrs)
  @listener.tag_start(name, attrs)
end
            
xmlDecl(version, encoding, standalone) click to toggle source
 
               # File rss/xmlparser.rb, line 50
def xmlDecl(version, encoding, standalone)
  @listener.xmldecl(version, encoding, standalone == 1)
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.