ETXMLParser class documentation
ETXMLParser : NSObjectOverview
An XML stream parse class. This parser is statefull, and will cache any unparsed data. Messages are fired off to the delegate for start and end tags as well as character data.
This class might more accurately be called ETXMLScanner or ETXMLTokeniser since the actual parsing is handled by the delegate.
Default
- + (id) parserWithContentHandler: (id< ETXMLWriting>)_contentHandler
- Create a new parser with the specified delegate. 
- - (id) initWithContentHandler: (id< ETXMLWriting>)_contentHandler
- Initialise a new parser with the specified delegate. 
- - (id) pushContentHandler: (id< ETXMLWriting>)aContentHandler
- Set the class to receive messages from input data. Commonly used to delegate handling child elements to other classes. 
- - (void) popContentHandler
- Pops the top content handler from the stack and returns control to the one below. Typically used when a handler has parsed a closing tag. 

 
			 
			
			 
			 
			
			 
			 
			 
			