Module: XML::SAX::DocumentHandler
- Included in:
- HandlerBase
- Defined in:
- lib/xml/sax.rb
Instance Method Summary collapse
- #characters(ch, start, length) ⇒ Object
- #endDocument ⇒ Object
- #endElement(name) ⇒ Object
- #ignorableWhitespace(ch, start, length) ⇒ Object
- #processingInstruction(target, data) ⇒ Object
- #setDocumentLocator(locator) ⇒ Object
- #startDocument ⇒ Object
- #startElement(name, atts) ⇒ Object
Instance Method Details
#characters(ch, start, length) ⇒ Object
59 60 61 |
# File 'lib/xml/sax.rb', line 59 def characters(ch, start, length) raise "not implemented" end |
#endDocument ⇒ Object
47 48 49 |
# File 'lib/xml/sax.rb', line 47 def endDocument() raise "not implemented" end |
#endElement(name) ⇒ Object
55 56 57 |
# File 'lib/xml/sax.rb', line 55 def endElement(name) raise "not implemented" end |
#ignorableWhitespace(ch, start, length) ⇒ Object
63 64 65 |
# File 'lib/xml/sax.rb', line 63 def ignorableWhitespace(ch, start, length) raise "not implemented" end |
#processingInstruction(target, data) ⇒ Object
67 68 69 |
# File 'lib/xml/sax.rb', line 67 def processingInstruction(target, data) raise "not implemented" end |
#setDocumentLocator(locator) ⇒ Object
39 40 41 |
# File 'lib/xml/sax.rb', line 39 def setDocumentLocator(locator) raise "not implemented" end |
#startDocument ⇒ Object
43 44 45 |
# File 'lib/xml/sax.rb', line 43 def startDocument raise "not implemented" end |
#startElement(name, atts) ⇒ Object
51 52 53 |
# File 'lib/xml/sax.rb', line 51 def startElement(name, atts) raise "not implemented" end |