Sha256: 1a6360b24b7c93be32216f62775b9d24f92b52965f4f859da45827c3d3b6e552

Contents?: true

Size: 1.14 KB

Versions: 3

Compression:

Stored size: 1.14 KB

Contents

#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>

#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

3 entries across 3 versions & 1 rubygems

Version Path
moblues-0.2.0 spec/resources/expected/objc/_Author.h
moblues-0.1.0 spec/resources/expected/_Author.h
moblues-0.0.1 spec/resources/expected/_Author.h