Sha256: 47459fa9f2ae59e7d29ec5ad3f1565312f3007128b47e1c6b64e590734996e9c

Contents?: true

Size: 1.37 KB

Versions: 9

Compression:

Stored size: 1.37 KB

Contents

#import "GHExamples.h"

#import "GHTag.h"
#import "GHTableRow.h"

@interface GHExamples ()

@property (nonatomic, strong) NSArray<GHTag *>        * tags;
@property (nonatomic, strong) GHLocation              * location;
@property (nonatomic, strong) NSString                * keyword;
@property (nonatomic, strong) NSString                * name;
@property (nonatomic, strong) NSString                * desc;
@property (nonatomic, strong) GHTableRow              * tableHeader;
@property (nonatomic, strong) NSArray<GHTableRow *>   * tableBody;

@end

@implementation GHExamples

@synthesize tags;
@synthesize location;
@synthesize keyword;
@synthesize name;
@synthesize desc;
@synthesize tableHeader;
@synthesize tableBody;

- (id)initWithTags:(NSArray<GHTag *> *)theTags location:(GHLocation *)theLocation keyword:(NSString *)theKeyword name:(NSString *)theName description:(NSString *)theDescription header:(GHTableRow *)theHeader body:(NSArray<GHTableRow *> *)theBody
{
    if (self = [super init])
    {
        tags = theTags;
        location = theLocation;
        keyword = theKeyword;
        name = theName;
        desc = theDescription;
        tableHeader = theHeader;
        tableBody = theBody;
    }
    
    return self;
}

- (NSArray<GHTableRow *> *)rows
{
    return [@[ tableHeader ] arrayByAddingObjectsFromArray: tableBody];
}

@end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
xcfit-2.0.6 XCFit/Classes/Cucumberish/Dependencies/Gherkin/GHExamples.m
xcfit-0.9.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHExamples.m
xcfit-0.8.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHExamples.m
xcfit-0.7.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHExamples.m
xcfit-0.6.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHExamples.m
xcfit-0.5.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHExamples.m
xcfit-0.4.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHExamples.m
xcfit-0.3.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHExamples.m
xcfit-0.2.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHExamples.m