class RSS::REXMLLikeXMLParser
Public Instance Methods
                              character(data)
                              click to toggle source
                            
                            # File rss-0.2.9/lib/rss/xmlparser.rb, line 48 def character(data) @listener.text(data) end
                              endElement(name)
                              click to toggle source
                            
                            # File rss-0.2.9/lib/rss/xmlparser.rb, line 44 def endElement(name) @listener.tag_end(name) end
                              listener=(listener)
                              click to toggle source
                            
                            # File rss-0.2.9/lib/rss/xmlparser.rb, line 36 def listener=(listener) @listener = listener end
                              processingInstruction(target, content)
                              click to toggle source
                            
                            # File rss-0.2.9/lib/rss/xmlparser.rb, line 56 def processingInstruction(target, content) @listener.instruction(target, content) end
                              startElement(name, attrs)
                              click to toggle source
                            
                            # File rss-0.2.9/lib/rss/xmlparser.rb, line 40 def startElement(name, attrs) @listener.tag_start(name, attrs) end
                              xmlDecl(version, encoding, standalone)
                              click to toggle source
                            
                            # File rss-0.2.9/lib/rss/xmlparser.rb, line 52 def xmlDecl(version, encoding, standalone) @listener.xmldecl(version, encoding, standalone == 1) end