summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTemplateConfiguration.h
diff options
context:
space:
mode:
authorMauricio Juarez <mjuarez44@ford.com>2019-07-17 18:36:54 +0200
committerMauricio Juarez <mjuarez44@ford.com>2019-07-17 18:36:54 +0200
commit4ec30efc5cb26621d715f6c8d83a2fb26da2ec03 (patch)
treeea5b9609b9320a97ca63c53dc581e861bb546512 /SmartDeviceLink/SDLTemplateConfiguration.h
parent31bb243d286e09cd46cc3134edfa3d165052954a (diff)
downloadsdl_ios-4ec30efc5cb26621d715f6c8d83a2fb26da2ec03.tar.gz
Add unit testing
Fix logic
Diffstat (limited to 'SmartDeviceLink/SDLTemplateConfiguration.h')
-rw-r--r--SmartDeviceLink/SDLTemplateConfiguration.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/SmartDeviceLink/SDLTemplateConfiguration.h b/SmartDeviceLink/SDLTemplateConfiguration.h
index b271c1030..2567d1550 100644
--- a/SmartDeviceLink/SDLTemplateConfiguration.h
+++ b/SmartDeviceLink/SDLTemplateConfiguration.h
@@ -12,27 +12,27 @@ NS_ASSUME_NONNULL_BEGIN
@interface SDLTemplateConfiguration : SDLRPCStruct
/**
- * @param templateName Predefined or dynamically created window template.
+ * @param template Predefined or dynamically created window template.
* Currently only predefined window template layouts are defined.
*/
-- (instancetype)initWithTemplate:(NSString *)templateName NS_DESIGNATED_INITIALIZER;
+- (instancetype)initWithTemplate:(NSString *)template NS_DESIGNATED_INITIALIZER;
/**
- * @param templateName Predefined or dynamically created window template.
- * Currently only predefined window template layouts are defined.
+ * @param template Predefined or dynamically created window template.
+ * Currently only predefined window template layouts are defined.
*
- * @param dayColorScheme The color scheme to use when the head unit is in a light / day situation.
+ * @param dayColorScheme The color scheme to use when the head unit is in a light / day situation.
*
* @param nightColorScheme The color scheme to use when the head unit is in a dark / night situation.
*/
-- (instancetype)initWithTemplate:(NSString *)templateName dayColorScheme:(nullable SDLTemplateColorScheme *)dayColorScheme nightColorScheme:(nullable SDLTemplateColorScheme *)nightColorScheme;
+- (instancetype)initWithTemplate:(NSString *)template dayColorScheme:(nullable SDLTemplateColorScheme *)dayColorScheme nightColorScheme:(nullable SDLTemplateColorScheme *)nightColorScheme;
/**
* Predefined or dynamically created window template.
* Currently only predefined window template layouts are defined.
*/
-@property (strong, nonatomic) NSString *templateName;
+@property (strong, nonatomic) NSString *template;
/**
* dayColorScheme The color scheme to use when the head unit is in a light / day situation.