module XML::SAX::DocumentHandler

Public Instance Methods

characters(ch, start, length) click to toggle source
# File lib/xml/sax.rb, line 58
def characters(ch, start, length)
  raise "not implemented"
end
endDocument() click to toggle source
# File lib/xml/sax.rb, line 46
def endDocument()
  raise "not implemented"
end
endElement(name) click to toggle source
# File lib/xml/sax.rb, line 54
def endElement(name)
  raise "not implemented"
end
ignorableWhitespace(ch, start, length) click to toggle source
# File lib/xml/sax.rb, line 62
def ignorableWhitespace(ch, start, length)
  raise "not implemented"
end
processingInstruction(target, data) click to toggle source
# File lib/xml/sax.rb, line 66
def processingInstruction(target, data)
  raise "not implemented"
end
setDocumentLocator(locator) click to toggle source
# File lib/xml/sax.rb, line 38
def setDocumentLocator(locator)
  raise "not implemented"
end
startDocument() click to toggle source
# File lib/xml/sax.rb, line 42
def startDocument
  raise "not implemented"
end
startElement(name, atts) click to toggle source
# File lib/xml/sax.rb, line 50
def startElement(name, atts)
  raise "not implemented"
end