Android Programming Press on the image to return to the main documentation page.

iXmlSax

List of types:

SaxParser

SaxParser

iXmlSax.h
iXmlSax

Created by b4j on 9/11/14.
Copyright (c) 2014 Anywhere Software. All rights reserved.

Events:

StartElement (Uri As String, Name As String, Attributes As Map)
EndElement (Uri As String, Name As String, Text As StringBuilder)

Members:


  Initialize

  Parents As List [read only]

  Parse (InputStream As InputStream, EventName As String)

  Parse2 (Text As String, EventName As String)

Members description:

Initialize
Parents As List [read only]
A list that holds the names of the parents elements.
During parsing you can use this list to recognize the current element.
Parse (InputStream As InputStream, EventName As String)
Parses the given input stream. The StartElement and EndElement events will be raised.
Parse2 (Text As String, EventName As String)
Parses the given text. The StartElement and EndElement events will be raised.
Top