Class: RSS::REXMLLikeXMLParser (Ruby 2.3.4)

In Files

  • rss/xmlparser.rb

Parent

Included Modules

Class/Module Index [+]

Quicksearch

RSS::REXMLLikeXMLParser

Public Instance Methods

character(data)
 
               # File rss/xmlparser.rb, line 48
def character(data)
  @listener.text(data)
end
            
endElement(name)
 
               # File rss/xmlparser.rb, line 44
def endElement(name)
  @listener.tag_end(name)
end
            
listener=(listener)
 
               # File rss/xmlparser.rb, line 36
def listener=(listener)
  @listener = listener
end
            
processingInstruction(target, content)
 
               # File rss/xmlparser.rb, line 56
def processingInstruction(target, content)
  @listener.instruction(target, content)
end
            
startElement(name, attrs)
 
               # File rss/xmlparser.rb, line 40
def startElement(name, attrs)
  @listener.tag_start(name, attrs)
end
            
xmlDecl(version, encoding, standalone)
 
               # File rss/xmlparser.rb, line 52
def xmlDecl(version, encoding, standalone)
  @listener.xmldecl(version, encoding, standalone == 1)
end