Sha256: 487f9b11e301ffb130c4f57343917509a095eeb13996c11c5e5429075fe9b8b9
Contents?: true
Size: 818 Bytes
Versions: 9
Compression:
Stored size: 818 Bytes
Contents
#import "GHStep.h" #import "GHLocation.h" #import "GHStepArgument.h" @interface GHStep () @property (nonatomic, strong) GHLocation * location; @property (nonatomic, strong) NSString * keyword; @property (nonatomic, strong) NSString * text; @property (nonatomic, strong) GHStepArgument * argument; @end @implementation GHStep @synthesize location; @synthesize keyword; @synthesize text; @synthesize argument; - (id)initWithLocation:(GHLocation *)theLocation keyword:(NSString *)theKeyword text:(NSString *)theText stepArgument:(GHStepArgument *)theArgument { if (self = [super init]) { location = theLocation; keyword = theKeyword; text = theText; argument = theArgument; } return self; } @end
Version data entries
9 entries across 9 versions & 1 rubygems