Sha256: 9230df346256dcdb0d919f4c97a27fae59cc9c21a1584ee3c76d1d1c7f7b3c28

Contents?: true

Size: 1.12 KB

Versions: 2

Compression:

Stored size: 1.12 KB

Contents

@import Foundation;
@import CoreData;

#import "Person.h"

@class Book;
@class Publisher;

@interface _Author : Person
@property (nonatomic, strong) NSDate *dob;
@property (nonatomic, copy) NSString *name;

@property (nonatomic, strong) NSOrderedSet *books;
@property (nonatomic, strong) NSSet *essays;
@property (nonatomic, strong) Publisher *publisher;
@end

@interface _Author (CoreDataGeneratedAccessors)

- (void)insertObject:(Book *)value inBooksAtIndex:(NSUInteger)index;
- (void)removeObjectFromBooksAtIndex:(NSUInteger)index;
- (void)insertBooks:(NSArray *)values atIndexes:(NSIndexSet *)indexes;
- (void)removeBooksAtIndexes:(NSIndexSet *)indexes;
- (void)replaceObjectInBooksAtIndex:(NSUInteger)index withObject:(Book *)value;
- (void)replaceBooksAtIndexes:(NSIndexSet *)indexes withBooks:(NSArray *)values;
- (void)addBooksObject:(Book *)value;
- (void)removeBooksObject:(Book *)value;
- (void)addBooks:(NSOrderedSet *)values;
- (void)removeBooks:(NSOrderedSet *)values;

- (void)addEssaysObject:(Book *)value;
- (void)removeEssaysObject:(Book *)value;
- (void)addEssays:(NSSet *)values;
- (void)removeEssays:(NSSet *)values;

@end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
moblues-0.4.0 spec/resources/expected/objc/_Author.h
moblues-0.3.0 spec/resources/expected/objc/_Author.h