module XML::SAX::DocumentHandler

Public Instance Methods

characters(ch, start, length) click to toggle source
# File lib/xml/sax.rb, line 59
def characters(ch, start, length)
  raise "not implemented"
end
endDocument() click to toggle source
# File lib/xml/sax.rb, line 47
def endDocument()
  raise "not implemented"
end
endElement(name) click to toggle source
# File lib/xml/sax.rb, line 55
def endElement(name)
  raise "not implemented"
end
ignorableWhitespace(ch, start, length) click to toggle source
# File lib/xml/sax.rb, line 63
def ignorableWhitespace(ch, start, length)
  raise "not implemented"
end
processingInstruction(target, data) click to toggle source
# File lib/xml/sax.rb, line 67
def processingInstruction(target, data)
  raise "not implemented"
end
setDocumentLocator(locator) click to toggle source
# File lib/xml/sax.rb, line 39
def setDocumentLocator(locator)
  raise "not implemented"
end
startDocument() click to toggle source
# File lib/xml/sax.rb, line 43
def startDocument
  raise "not implemented"
end
startElement(name, atts) click to toggle source
# File lib/xml/sax.rb, line 51
def startElement(name, atts)
  raise "not implemented"
end