summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLUnsubscribeButton.m
blob: 294ca65c213e87e257ba1f7b05d47c2b0eb67cb7 (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
//  SDLUnsubscribeButton.m
//


#import "SDLUnsubscribeButton.h"

#import "NSMutableDictionary+Store.h"
#import "SDLButtonName.h"
#import "SDLNames.h"

@implementation SDLUnsubscribeButton

- (instancetype)init {
    if (self = [super initWithName:SDLNameUnsubscribeButton]) {
    }
    return self;
}

- (instancetype)initWithButtonName:(SDLButtonName)buttonName {
    self = [self init];
    if (!self) {
        return nil;
    }

    self.buttonName = buttonName;

    return self;
}

- (void)setButtonName:(SDLButtonName)buttonName {
    [parameters sdl_setObject:buttonName forName:SDLNameButtonName];
}

- (SDLButtonName)buttonName {
    NSObject *obj = [parameters sdl_objectForName:SDLNameButtonName];
    return (SDLButtonName)obj;
}

@end