haXe XPath Documentation
Back |
Indexclass dcxml.parser.XmlBuilder
Event handler for XmlParser which builds a tree of Xml objects.
- function new() : Void
- Constructs a new XmlBuilder.
- 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 getXml() : dcxml.Xml
- Gets the resulting XML tree. Throws XmlException if the builder has not
yet reached the end of the document and constructed the entire tree
- 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