A simple call-back interface for SAX-style XML parsing.
More...
#import <xap_CocoaPlugin.h>
List of all members.
Detailed Description
A simple call-back interface for SAX-style XML parsing.
Member Function Documentation
- (BOOL) characterData: |
|
(NSString *) |
data |
|
|
Called with text data.
- Parameters:
-
- Returns:
- This method should return YES normally, but NO in order to stop parsing.
- (BOOL) endElement: |
|
(NSString *) |
name |
|
|
Called on end of a element.
- Parameters:
-
- Returns:
- This method should return YES normally, but NO in order to stop parsing.
- (BOOL) startElement: |
|
(NSString *) |
name |
attributes: |
|
(NSDictionary *) |
attributes | |
|
|
| | |
Called on start of a new element.
- Parameters:
-
| name | The element name. |
| attributes | The element's attributes as a dictionary. |
- Returns:
- This method should return YES normally, but NO in order to stop parsing.
The documentation for this protocol was generated from the following file: