Module: XML::SAX::DocumentHandler

Included in:
HandlerBase
Defined in:
lib/xml/sax.rb

Instance Method Summary collapse

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

#endDocumentObject



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

#startDocumentObject



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