Module: MultiSAX::Callbacks
- Defined in:
- lib/multisax.rb
Overview
MultiSAX callbacks. MultiSAX::SAX listener should include this module.
Instance Method Summary collapse
-
#sax_cdata(text) ⇒ Object
CDATA.
-
#sax_comment(text) ⇒ Object
Comment.
-
#sax_tag_end(tag) ⇒ Object
End of tag.
-
#sax_tag_start(tag, attrs) ⇒ Object
Start of tag.
-
#sax_text(text) ⇒ Object
Text.
-
#sax_xmldecl(version, encoding, standalone) ⇒ Object
XML declaration (not available if parser is :libxml).
Instance Method Details
#sax_cdata(text) ⇒ Object
CDATA
274 |
# File 'lib/multisax.rb', line 274 def sax_cdata(text) end |
#sax_comment(text) ⇒ Object
Comment
272 |
# File 'lib/multisax.rb', line 272 def sax_comment(text) end |
#sax_tag_end(tag) ⇒ Object
End of tag
270 |
# File 'lib/multisax.rb', line 270 def sax_tag_end(tag) end |
#sax_tag_start(tag, attrs) ⇒ Object
Start of tag
268 |
# File 'lib/multisax.rb', line 268 def sax_tag_start(tag,attrs) end |
#sax_text(text) ⇒ Object
Text
276 |
# File 'lib/multisax.rb', line 276 def sax_text(text) end |
#sax_xmldecl(version, encoding, standalone) ⇒ Object
XML declaration (not available if parser is :libxml)
278 |
# File 'lib/multisax.rb', line 278 def sax_xmldecl(version,encoding,standalone) end |