Class: XML::SAX::HandlerBase
- Inherits:
-
Object
- Object
- XML::SAX::HandlerBase
- Includes:
- DTDHandler, DocumentHandler, EntityResolver, ErrorHandler
- Defined in:
- lib/xml/sax.rb
Instance Method Summary collapse
- #characters(ch, start, length) ⇒ Object
- #endDocument ⇒ Object
- #endElement(name) ⇒ Object
- #error(e) ⇒ Object
- #fatalError(e) ⇒ Object
- #ignorableWhitespace(ch, sart, length) ⇒ Object
- #notationDecl(name, pubid, sysid) ⇒ Object
- #processingInstruction(target, data) ⇒ Object
- #resolveEntity(pubid, sysid) ⇒ Object
- #setDocumentLocator(locator) ⇒ Object
- #startDocument ⇒ Object
- #startElement(name, atts) ⇒ Object
- #unparsedEntityDecl(name, pubid, sysid, natation) ⇒ Object
- #warning(e) ⇒ Object
Instance Method Details
#characters(ch, start, length) ⇒ Object
167 168 |
# File 'lib/xml/sax.rb', line 167 def characters(ch, start, length) end |
#endDocument ⇒ Object
158 159 |
# File 'lib/xml/sax.rb', line 158 def endDocument end |
#endElement(name) ⇒ Object
164 165 |
# File 'lib/xml/sax.rb', line 164 def endElement(name) end |
#error(e) ⇒ Object
179 180 |
# File 'lib/xml/sax.rb', line 179 def error(e) end |
#fatalError(e) ⇒ Object
182 183 184 |
# File 'lib/xml/sax.rb', line 182 def fatalError(e) raise e end |
#ignorableWhitespace(ch, sart, length) ⇒ Object
170 171 |
# File 'lib/xml/sax.rb', line 170 def ignorableWhitespace(ch, sart, length) end |
#notationDecl(name, pubid, sysid) ⇒ Object
146 147 |
# File 'lib/xml/sax.rb', line 146 def notationDecl(name, pubid, sysid) end |
#processingInstruction(target, data) ⇒ Object
173 174 |
# File 'lib/xml/sax.rb', line 173 def processingInstruction(target, data) end |
#resolveEntity(pubid, sysid) ⇒ Object
142 143 144 |
# File 'lib/xml/sax.rb', line 142 def resolveEntity(pubid, sysid) nil end |
#setDocumentLocator(locator) ⇒ Object
152 153 |
# File 'lib/xml/sax.rb', line 152 def setDocumentLocator(locator) end |
#startDocument ⇒ Object
155 156 |
# File 'lib/xml/sax.rb', line 155 def startDocument end |
#startElement(name, atts) ⇒ Object
161 162 |
# File 'lib/xml/sax.rb', line 161 def startElement(name, atts) end |
#unparsedEntityDecl(name, pubid, sysid, natation) ⇒ Object
149 150 |
# File 'lib/xml/sax.rb', line 149 def unparsedEntityDecl(name, pubid, sysid, natation) end |
#warning(e) ⇒ Object
176 177 |
# File 'lib/xml/sax.rb', line 176 def warning(e) end |