Methods
- C
- E
- L
- P
- S
- X
Included Modules
- ::XML::Encoding_ja
Instance Public methods
character(data)
Link
Source: show
# File lib/rss/xmlparser.rb, line 47 def character(data) @listener.text(data) end
endElement(name)
Link
Source: show
# File lib/rss/xmlparser.rb, line 43 def endElement(name) @listener.tag_end(name) end
listener=(listener)
Link
Source: show
# File lib/rss/xmlparser.rb, line 35 def listener=(listener) @listener = listener end
processingInstruction(target, content)
Link
Source: show
# File lib/rss/xmlparser.rb, line 55 def processingInstruction(target, content) @listener.instruction(target, content) end