class ChupaText::SAXParser::Listener
Public Class Methods
Source
# File lib/chupa-text/sax-parser.rb, line 140 def initialize(listener) @listener = listener end
Public Instance Methods
Source
# File lib/chupa-text/sax-parser.rb, line 165 def cdata(content) @listener.cdata(content) end
Source
# File lib/chupa-text/sax-parser.rb, line 161 def characters(text) @listener.characters(text) end
Source
# File lib/chupa-text/sax-parser.rb, line 156 def end_element(*args) @listener.end_element(*args) end
Source
# File lib/chupa-text/sax-parser.rb, line 148 def end_prefix_mapping(*args) @listener.end_prefix_mapping(*args) end
Source
# File lib/chupa-text/sax-parser.rb, line 152 def start_element(*args) @listener.start_element(*args) end
Source
# File lib/chupa-text/sax-parser.rb, line 144 def start_prefix_mapping(*args) @listener.start_prefix_mapping(*args) end