forked from gavinkwoe/todparsekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJSONAssembler.h
36 lines (32 loc) · 868 Bytes
/
JSONAssembler.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// JSONAssembler.h
// ParseKit
//
// Created by Todd Ditchendorf on 12/16/08.
// Copyright 2009 Todd Ditchendorf. All rights reserved.
//
#import <Foundation/Foundation.h>
@class PKToken;
@interface JSONAssembler : NSObject {
NSMutableAttributedString *displayString;
id defaultAttrs;
id objectAttrs;
id arrayAttrs;
id propertyNameAttrs;
id valueAttrs;
id constantAttrs;
PKToken *comma;
PKToken *curly;
PKToken *bracket;
}
@property (retain) NSMutableAttributedString *displayString;
@property (retain) id defaultAttrs;
@property (retain) id objectAttrs;
@property (retain) id arrayAttrs;
@property (retain) id propertyNameAttrs;
@property (retain) id valueAttrs;
@property (retain) id constantAttrs;
@property (retain) PKToken *comma;
@property (retain) PKToken *curly;
@property (retain) PKToken *bracket;
@end