module XML::SAX::DocumentHandler
Public Instance Methods
Source
# File lib/xml/sax.rb, line 58 def characters(ch, start, length) raise "not implemented" end
Source
# File lib/xml/sax.rb, line 54 def endElement(name) raise "not implemented" end
Source
# File lib/xml/sax.rb, line 62 def ignorableWhitespace(ch, start, length) raise "not implemented" end
Source
# File lib/xml/sax.rb, line 66 def processingInstruction(target, data) raise "not implemented" end
Source
# File lib/xml/sax.rb, line 38 def setDocumentLocator(locator) raise "not implemented" end
Source
# File lib/xml/sax.rb, line 42 def startDocument raise "not implemented" end
Source
# File lib/xml/sax.rb, line 50 def startElement(name, atts) raise "not implemented" end