Class: WirisPlugin::DefaultHandler
- Inherits:
-
Object
- Object
- WirisPlugin::DefaultHandler
- Extended by:
- ContentHandlerInterface
- Includes:
- Wiris
- Defined in:
- lib/com/wiris/util/xml/DefaultHandler.rb
Instance Method Summary collapse
- #characters(ch) ⇒ Object
- #endDocument ⇒ Object
- #endElement(uri, localName, qName) ⇒ Object
-
#initialize ⇒ DefaultHandler
constructor
A new instance of DefaultHandler.
- #startDocument ⇒ Object
- #startElement(uri, localName, qName, atts) ⇒ Object
Methods included from ContentHandlerInterface
Constructor Details
#initialize ⇒ DefaultHandler
10 11 12 |
# File 'lib/com/wiris/util/xml/DefaultHandler.rb', line 10 def initialize() super() end |
Instance Method Details
#characters(ch) ⇒ Object
17 18 |
# File 'lib/com/wiris/util/xml/DefaultHandler.rb', line 17 def characters(ch) end |
#endDocument ⇒ Object
21 22 |
# File 'lib/com/wiris/util/xml/DefaultHandler.rb', line 21 def endDocument() end |
#endElement(uri, localName, qName) ⇒ Object
15 16 |
# File 'lib/com/wiris/util/xml/DefaultHandler.rb', line 15 def endElement(uri, localName, qName) end |
#startDocument ⇒ Object
19 20 |
# File 'lib/com/wiris/util/xml/DefaultHandler.rb', line 19 def startDocument() end |
#startElement(uri, localName, qName, atts) ⇒ Object
13 14 |
# File 'lib/com/wiris/util/xml/DefaultHandler.rb', line 13 def startElement(uri, localName, qName, atts) end |