forked from SVGKit/SVGKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNode+Mutable.h
More file actions
26 lines (19 loc) · 799 Bytes
/
Copy pathNode+Mutable.h
File metadata and controls
26 lines (19 loc) · 799 Bytes
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
/**
Makes the writable properties all package-private, effectively
*/
#import "Node.h"
@interface Node()
@property(nonatomic,retain,readwrite) NSString* nodeName;
@property(nonatomic,retain,readwrite) NSString* nodeValue;
@property(nonatomic,readwrite) DOMNodeType nodeType;
@property(nonatomic,assign,readwrite) Node* parentNode;
@property(nonatomic,retain,readwrite) NodeList* childNodes;
@property(nonatomic,retain,readwrite) NamedNodeMap* attributes;
@property(nonatomic,assign,readwrite) Document* ownerDocument;
// Introduced in DOM Level 2:
@property(nonatomic,retain,readwrite) NSString* namespaceURI;
// Introduced in DOM Level 2:
@property(nonatomic,retain,readwrite) NSString* prefix;
// Introduced in DOM Level 2:
@property(nonatomic,retain,readwrite) NSString* localName;
@end