Playlist Generator  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Defines
Public Member Functions
<SBJsonStreamParserDelegate> Protocol Reference

Delegate for interacting directly with the stream parser. More...

#import <SBJsonStreamParser.h>

Inheritance diagram for <SBJsonStreamParserDelegate>:
SBJsonStreamParserAdapter

List of all members.

Public Member Functions

(void) - parserFoundObjectStart:
 Called when object start is found.
(void) - parser:foundObjectKey:
 Called when object key is found.
(void) - parserFoundObjectEnd:
 Called when object end is found.
(void) - parserFoundArrayStart:
 Called when array start is found.
(void) - parserFoundArrayEnd:
 Called when array end is found.
(void) - parser:foundBoolean:
 Called when a boolean value is found.
(void) - parserFoundNull:
 Called when a null value is found.
(void) - parser:foundNumber:
 Called when a number is found.
(void) - parser:foundString:
 Called when a string is found.

Detailed Description

Delegate for interacting directly with the stream parser.

You will most likely find it much more convenient to implement the SBJsonStreamParserAdapterDelegate protocol instead.


Member Function Documentation

- (void) parser: (SBJsonStreamParser *)  parser
foundBoolean: (BOOL)  x 

Called when a boolean value is found.

- (void) parser: (SBJsonStreamParser *)  parser
foundNumber: (NSNumber *)  num 

Called when a number is found.

- (void) parser: (SBJsonStreamParser *)  parser
foundObjectKey: (NSString *)  key 

Called when object key is found.

- (void) parser: (SBJsonStreamParser *)  parser
foundString: (NSString *)  string 

Called when a string is found.

Called when array end is found.

Called when array start is found.

- (void) parserFoundNull: (SBJsonStreamParser *)  parser

Called when a null value is found.

Called when object end is found.

Called when object start is found.


The documentation for this protocol was generated from the following file: