blob: e9630665e142db5c0c296069d3b7576c6947f6ca (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
// SDLAddCommand.m
//
#import "SDLAddCommand.h"
#import "SDLImage.h"
#import "SDLMenuParams.h"
#import "SDLNames.h"
@implementation SDLAddCommand
- (instancetype)init {
if (self = [super initWithName:NAMES_AddCommand]) {
}
return self;
}
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict {
if (self = [super initWithDictionary:dict]) {
}
return self;
}
- (void)setCmdID:(NSNumber *)cmdID {
if (cmdID != nil) {
[parameters setObject:cmdID forKey:NAMES_cmdID];
} else {
[parameters removeObjectForKey:NAMES_cmdID];
}
}
- (NSNumber *)cmdID {
return [parameters objectForKey:NAMES_cmdID];
}
- (void)setMenuParams:(SDLMenuParams *)menuParams {
if (menuParams != nil) {
[parameters setObject:menuParams forKey:NAMES_menuParams];
} else {
[parameters removeObjectForKey:NAMES_menuParams];
}
}
- (SDLMenuParams *)menuParams {
NSObject *obj = [parameters objectForKey:NAMES_menuParams];
if (obj == nil || [obj isKindOfClass:SDLMenuParams.class]) {
return (SDLMenuParams *)obj;
} else {
return [[SDLMenuParams alloc] initWithDictionary:(NSMutableDictionary *)obj];
}
}
- (void)setVrCommands:(NSMutableArray *)vrCommands {
if (vrCommands != nil) {
[parameters setObject:vrCommands forKey:NAMES_vrCommands];
} else {
[parameters removeObjectForKey:NAMES_vrCommands];
}
}
- (NSMutableArray *)vrCommands {
return [parameters objectForKey:NAMES_vrCommands];
}
- (void)setCmdIcon:(SDLImage *)cmdIcon {
if (cmdIcon != nil) {
[parameters setObject:cmdIcon forKey:NAMES_cmdIcon];
} else {
[parameters removeObjectForKey:NAMES_cmdIcon];
}
}
- (SDLImage *)cmdIcon {
NSObject *obj = [parameters objectForKey:NAMES_cmdIcon];
if (obj == nil || [obj isKindOfClass:SDLImage.class]) {
return (SDLImage *)obj;
} else {
return [[SDLImage alloc] initWithDictionary:(NSMutableDictionary *)obj];
}
}
@end
|