Maintenance of Ruby 2.0.0 ended on February 24, 2016. 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