org.xml.sax.ContentHandler.startElement
method
public startElement(uri as String, localName as String, qName as String, atts as Attributes) as Void throws SAXException
Description

Receives the beginning of an element.

Parameters
  • uri Namespace URI, or empty string.
  • localName Local name, or empty string.
  • qName Qualified name, or empty string.
  • atts Element attributes.
Throws
  • SAXException if the application wants to interrupt parsing.
Example
handler.startElement("", "item", "item", attrs)