haXe XPath Documentation
Back |
Indexinterface dcxml.parser.XmlHandler
Interface for document event handlers for XmlParser.
- function characters(data : String) : Void
- Receive notification of character data.
- function comment(data : String) : Void
- Receive notification of a comment.
- function endCData() : Void
- Receive notification of the end of a CDATA section.
- function endDocument() : Void
- Receive notification of the end of a document.
- function endElement(name : String) : Void
- Receive notification of the end of an element.
- function processingInstruction(target : String, data : String) : Void
- Receive notification of a processing instruction.
- function startCData() : Void
- Receive notification of the start of a CDATA section.
- function startDocument() : Void
- Receive notification of the beginning of a document.
- function startElement(name : String, attributes : Hash<String>) : Void
- Receive notification of the beginning of an element.
Back |
Index