Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more
# File rss/xmlparser.rb, line 46
def character(data)
@listener.text(data)
end
# File rss/xmlparser.rb, line 42
def endElement(name)
@listener.tag_end(name)
end
# File rss/xmlparser.rb, line 34
def listener=(listener)
@listener = listener
end
# File rss/xmlparser.rb, line 54
def processingInstruction(target, content)
@listener.instruction(target, content)
end