class RSS::REXMLLikeXMLParser
公共实例方法
character(data) 点击切换源代码
# File rss-0.3.1/lib/rss/xmlparser.rb, line 48 def character(data) @listener.text(data) end
endElement(name) 点击切换源代码
# File rss-0.3.1/lib/rss/xmlparser.rb, line 44 def endElement(name) @listener.tag_end(name) end
listener=(listener) 点击切换源代码
# File rss-0.3.1/lib/rss/xmlparser.rb, line 36 def listener=(listener) @listener = listener end
processingInstruction(target, content) 点击切换源代码
# File rss-0.3.1/lib/rss/xmlparser.rb, line 56 def processingInstruction(target, content) @listener.instruction(target, content) end
startElement(name, attrs) 点击切换源代码
# File rss-0.3.1/lib/rss/xmlparser.rb, line 40 def startElement(name, attrs) @listener.tag_start(name, attrs) end
xmlDecl(version, encoding, standalone) 点击切换源代码
# File rss-0.3.1/lib/rss/xmlparser.rb, line 52 def xmlDecl(version, encoding, standalone) @listener.xmldecl(version, encoding, standalone == 1) end