Sha256: 8d0ca94023918e95b9cb660e5bbb5087d57ec7fc4d40152582851a181dfcc0f3
Contents?: true
Size: 1.59 KB
Versions: 9
Compression:
Stored size: 1.59 KB
Contents
#import "GHFeature.h" #import "GHTag.h" #import "GHLocation.h" #import "GHBackground.h" #import "GHScenarioDefinition.h" #import "GHComment.h" @interface GHFeature () @property (nonatomic, strong) NSArray<GHTag *> * tags; @property (nonatomic, strong) GHLocation * location; @property (nonatomic, strong) NSString * language; @property (nonatomic, strong) NSString * keyword; @property (nonatomic, strong) NSString * name; @property (nonatomic, strong) NSString * desc; @property (nonatomic, strong) NSArray<GHScenarioDefinition *> * children; @property (nonatomic, strong) NSArray<GHComment *> * comments; @end @implementation GHFeature @synthesize tags; @synthesize location; @synthesize language; @synthesize keyword; @synthesize name; @synthesize desc; @synthesize children; @synthesize comments; - (id)initWithTags:(NSArray<GHTag *> *)theTags location:(GHLocation *)theLocation language:(NSString *)theLanguage keyword:(NSString *)theKeyword name:(NSString *)theName description:(NSString *)theDescription children:(NSArray<GHScenarioDefinition *> *)theChildren comments:(NSArray<GHComment *> *)theComments { if (self = [super init]) { tags = theTags; location = theLocation; language = theLanguage; keyword = theKeyword; name = theName; desc = theDescription; children = theChildren; comments = theComments; } return self; } @end
Version data entries
9 entries across 9 versions & 1 rubygems