class XML::SAX::HandlerBase
Public Instance Methods
characters(ch, start, length)
click to toggle source
# File lib/xml/sax.rb, line 166 def characters(ch, start, length) end
endDocument()
click to toggle source
# File lib/xml/sax.rb, line 157 def endDocument end
endElement(name)
click to toggle source
# File lib/xml/sax.rb, line 163 def endElement(name) end
error(e)
click to toggle source
# File lib/xml/sax.rb, line 178 def error(e) end
fatalError(e)
click to toggle source
# File lib/xml/sax.rb, line 181 def fatalError(e) raise e end
ignorableWhitespace(ch, sart, length)
click to toggle source
# File lib/xml/sax.rb, line 169 def ignorableWhitespace(ch, sart, length) end
notationDecl(name, pubid, sysid)
click to toggle source
# File lib/xml/sax.rb, line 145 def notationDecl(name, pubid, sysid) end
processingInstruction(target, data)
click to toggle source
# File lib/xml/sax.rb, line 172 def processingInstruction(target, data) end
resolveEntity(pubid, sysid)
click to toggle source
# File lib/xml/sax.rb, line 141 def resolveEntity(pubid, sysid) nil end
setDocumentLocator(locator)
click to toggle source
# File lib/xml/sax.rb, line 151 def setDocumentLocator(locator) end
startDocument()
click to toggle source
# File lib/xml/sax.rb, line 154 def startDocument end
startElement(name, atts)
click to toggle source
# File lib/xml/sax.rb, line 160 def startElement(name, atts) end
unparsedEntityDecl(name, pubid, sysid, natation)
click to toggle source
# File lib/xml/sax.rb, line 148 def unparsedEntityDecl(name, pubid, sysid, natation) end
warning(e)
click to toggle source
# File lib/xml/sax.rb, line 175 def warning(e) end