Created
September 7, 2014 11:22
-
-
Save tonyarnold/183248857b67ac7fb187 to your computer and use it in GitHub Desktop.
My current mogenerator templates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "_<$managedObjectClassName$>.h" | |
@interface <$managedObjectClassName$> : _<$managedObjectClassName$> {} | |
// Custom logic goes here. | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "<$managedObjectClassName$>.h" | |
@interface <$managedObjectClassName$> () | |
// Private interface goes here. | |
@end | |
@implementation <$managedObjectClassName$> | |
// Custom logic goes here. | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DO NOT EDIT. This file is machine-generated and constantly overwritten. | |
// Make changes to <$managedObjectClassName$>.h instead. | |
#import <CoreData/CoreData.h> | |
<$if hasCustomSuperentity$><$if hasSuperentity$>#import "<$customSuperentity$>.h" | |
<$else$><$if hasCustomBaseCaseImport$>#import <$baseClassImport$><$else$>#import "<$customSuperentity$>.h"<$endif$><$endif$><$endif$> | |
<$if noninheritedAttributes.@count > 0$> | |
extern const struct <$managedObjectClassName$>Attributes {<$foreach Attribute noninheritedAttributes do$> | |
<$if TemplateVar.arc$>__unsafe_unretained<$endif$> NSString *<$Attribute.name$>;<$endforeach do$> | |
} <$managedObjectClassName$>Attributes; | |
<$endif$> | |
<$if noninheritedRelationships.@count > 0$> | |
extern const struct <$managedObjectClassName$>Relationships {<$foreach Relationship noninheritedRelationships do$> | |
<$if TemplateVar.arc$>__unsafe_unretained<$endif$> NSString *<$Relationship.name$>;<$endforeach do$> | |
} <$managedObjectClassName$>Relationships; | |
<$endif$> | |
<$if noninheritedFetchedProperties.@count > 0$> | |
extern const struct <$managedObjectClassName$>FetchedProperties {<$foreach FetchedProperty noninheritedFetchedProperties do$> | |
<$if TemplateVar.arc$>__unsafe_unretained<$endif$> NSString *<$FetchedProperty.name$>;<$endforeach do$> | |
} <$managedObjectClassName$>FetchedProperties; | |
<$endif$> | |
<$if hasUserInfoKeys$> | |
extern const struct <$managedObjectClassName$>UserInfo {<$foreach UserInfo userInfoKeyValues do$> | |
<$if TemplateVar.arc$>__unsafe_unretained<$endif$> NSString *<$UserInfo.key$>;<$endforeach do$> | |
} <$managedObjectClassName$>UserInfo; | |
<$endif$> | |
<$foreach Relationship noninheritedRelationships do$>@class <$Relationship.destinationEntity.managedObjectClassName$>; | |
<$endforeach do$> | |
<$foreach Attribute noninheritedAttributes do$> | |
<$if Attribute.hasTransformableAttributeType$> | |
<$if Attribute.objectAttributeTransformableProtocols$> | |
<$foreach Protocol Attribute.objectAttributeTransformableProtocols do$>@protocol <$Protocol$>; | |
<$endforeach do$> | |
<$else$>@class <$Attribute.objectAttributeClassName$>;<$endif$><$endif$> | |
<$endforeach do$> | |
@interface <$managedObjectClassName$>ID : <$if hasSuperentity$><$customSuperentity$>ID<$else$>NSManagedObjectID<$endif$> {} | |
@end | |
@interface _<$managedObjectClassName$> : <$customSuperentity$> {} | |
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_; | |
+ (NSString*)entityName; | |
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_; | |
- (<$managedObjectClassName$>ID*)objectID; | |
<$foreach Attribute noninheritedAttributes do$> | |
<$if Attribute.hasDefinedAttributeType$> | |
<$if TemplateVar.arc$> | |
<$if Attribute.isReadonly$> | |
@property (nonatomic, strong, readonly) <$Attribute.objectAttributeType$> <$Attribute.name$>; | |
<$else$> | |
@property (nonatomic, strong) <$Attribute.objectAttributeType$> <$Attribute.name$>; | |
<$endif$> | |
<$else$> | |
<$if Attribute.isReadonly$> | |
@property (nonatomic, retain, readonly) <$Attribute.objectAttributeType$> <$Attribute.name$>; | |
<$else$> | |
@property (nonatomic, retain) <$Attribute.objectAttributeType$> <$Attribute.name$>; | |
<$endif$> | |
<$endif$> | |
<$if TemplateVar.scalarTypes$><$if Attribute.hasScalarAttributeType$> | |
<$if Attribute.isReadonly$> | |
@property (atomic, readonly) <$Attribute.scalarAttributeType$> <$Attribute.name$>Value; | |
- (<$Attribute.scalarAttributeType$>)<$Attribute.name$>Value; | |
<$else$> | |
@property (atomic) <$Attribute.scalarAttributeType$> <$Attribute.name$>Value; | |
- (<$Attribute.scalarAttributeType$>)<$Attribute.name$>Value; | |
- (void)set<$Attribute.name.initialCapitalString$>Value:(<$Attribute.scalarAttributeType$>)value_; | |
<$endif$> | |
<$endif$> | |
<$endif$> | |
//- (BOOL)validate<$Attribute.name.initialCapitalString$>:(id*)value_ error:(NSError**)error_; | |
<$endif$> | |
<$endforeach do$> | |
<$foreach Relationship noninheritedRelationships do$> | |
<$if Relationship.isToMany$> | |
<$if TemplateVar.arc$> | |
@property (nonatomic, strong) <$Relationship.immutableCollectionClassName$> *<$Relationship.name$>; | |
<$else$> | |
@property (nonatomic, retain) <$Relationship.immutableCollectionClassName$> *<$Relationship.name$>; | |
<$endif$> | |
- (<$Relationship.mutableCollectionClassName$>*)<$Relationship.name$>Set; | |
<$else$> | |
<$if TemplateVar.arc$> | |
@property (nonatomic, strong) <$Relationship.destinationEntity.managedObjectClassName$> *<$Relationship.name$>; | |
<$else$> | |
@property (nonatomic, retain) <$Relationship.destinationEntity.managedObjectClassName$> *<$Relationship.name$>; | |
<$endif$> | |
//- (BOOL)validate<$Relationship.name.initialCapitalString$>:(id*)value_ error:(NSError**)error_; | |
<$endif$> | |
<$endforeach do$> | |
<$foreach FetchRequest prettyFetchRequests do$> | |
<$if FetchRequest.singleResult$> | |
+ (id)fetch<$FetchRequest.name.initialCapitalString$>:(NSManagedObjectContext*)moc_ <$foreach Binding FetchRequest.bindings do2$><$Binding.name$>:(<$Binding.type$>)<$Binding.name$>_ <$endforeach do2$>; | |
+ (id)fetch<$FetchRequest.name.initialCapitalString$>:(NSManagedObjectContext*)moc_ <$foreach Binding FetchRequest.bindings do2$><$Binding.name$>:(<$Binding.type$>)<$Binding.name$>_ <$endforeach do2$>error:(NSError**)error_; | |
<$else$> | |
+ (NSArray*)fetch<$FetchRequest.name.initialCapitalString$>:(NSManagedObjectContext*)moc_ <$foreach Binding FetchRequest.bindings do2$><$Binding.name$>:(<$Binding.type$>)<$Binding.name$>_ <$endforeach do2$>; | |
+ (NSArray*)fetch<$FetchRequest.name.initialCapitalString$>:(NSManagedObjectContext*)moc_ <$foreach Binding FetchRequest.bindings do2$><$Binding.name$>:(<$Binding.type$>)<$Binding.name$>_ <$endforeach do2$>error:(NSError**)error_; | |
<$endif$> | |
<$endforeach do$> | |
<$foreach FetchedProperty noninheritedFetchedProperties do$> | |
@property (nonatomic, readonly) NSArray *<$FetchedProperty.name$>; | |
<$endforeach do$> | |
<$if TemplateVar.frc$> | |
#if TARGET_OS_IPHONE | |
<$foreach Relationship noninheritedRelationships do$> | |
<$if Relationship.isToMany$> | |
- (NSFetchedResultsController*)new<$Relationship.name.initialCapitalString$>FetchedResultsControllerWithSortDescriptors:(NSArray*)sortDescriptors; | |
<$endif$> | |
<$endforeach do$> | |
#endif | |
<$endif$> | |
@end | |
<$foreach Relationship noninheritedRelationships do$><$if Relationship.isToMany$> | |
@interface _<$managedObjectClassName$> (<$Relationship.name.initialCapitalString$>CoreDataGeneratedAccessors) | |
- (void)add<$Relationship.name.initialCapitalString$>:(<$Relationship.immutableCollectionClassName$>*)value_; | |
- (void)remove<$Relationship.name.initialCapitalString$>:(<$Relationship.immutableCollectionClassName$>*)value_; | |
- (void)add<$Relationship.name.initialCapitalString$>Object:(<$Relationship.destinationEntity.managedObjectClassName$>*)value_; | |
- (void)remove<$Relationship.name.initialCapitalString$>Object:(<$Relationship.destinationEntity.managedObjectClassName$>*)value_; | |
@end | |
<$endif$><$endforeach do$> | |
@interface _<$managedObjectClassName$> (CoreDataGeneratedPrimitiveAccessors) | |
<$foreach Attribute noninheritedAttributesSansType do$> | |
<$if Attribute.hasDefinedAttributeType$> | |
- (<$Attribute.objectAttributeType$>)primitive<$Attribute.name.initialCapitalString$>; | |
- (void)setPrimitive<$Attribute.name.initialCapitalString$>:(<$Attribute.objectAttributeType$>)value; | |
<$if TemplateVar.scalarTypes$><$if Attribute.hasScalarAttributeType$> | |
- (<$Attribute.scalarAttributeType$>)primitive<$Attribute.name.initialCapitalString$>Value; | |
- (void)setPrimitive<$Attribute.name.initialCapitalString$>Value:(<$Attribute.scalarAttributeType$>)value_; | |
<$endif$> | |
<$endif$> | |
<$endif$> | |
<$endforeach do$> | |
<$foreach Relationship noninheritedRelationships do$> | |
<$if Relationship.isToMany$> | |
- (<$Relationship.mutableCollectionClassName$>*)primitive<$Relationship.name.initialCapitalString$>; | |
- (void)setPrimitive<$Relationship.name.initialCapitalString$>:(<$Relationship.mutableCollectionClassName$>*)value; | |
<$else$> | |
- (<$Relationship.destinationEntity.managedObjectClassName$>*)primitive<$Relationship.name.initialCapitalString$>; | |
- (void)setPrimitive<$Relationship.name.initialCapitalString$>:(<$Relationship.destinationEntity.managedObjectClassName$>*)value; | |
<$endif$> | |
<$endforeach do$> | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DO NOT EDIT. This file is machine-generated and constantly overwritten. | |
// Make changes to <$managedObjectClassName$>.m instead. | |
#import "_<$managedObjectClassName$>.h" | |
<$if noninheritedAttributes.@count > 0$> | |
const struct <$managedObjectClassName$>Attributes <$managedObjectClassName$>Attributes = {<$foreach Attribute noninheritedAttributes do$> | |
.<$Attribute.name$> = @"<$Attribute.name$>",<$endforeach do$> | |
}; | |
<$endif$> | |
<$if noninheritedRelationships.@count > 0$> | |
const struct <$managedObjectClassName$>Relationships <$managedObjectClassName$>Relationships = {<$foreach Relationship noninheritedRelationships do$> | |
.<$Relationship.name$> = @"<$Relationship.name$>",<$endforeach do$> | |
}; | |
<$endif$> | |
<$if noninheritedFetchedProperties.@count > 0$> | |
const struct <$managedObjectClassName$>FetchedProperties <$managedObjectClassName$>FetchedProperties = {<$foreach FetchedProperty noninheritedFetchedProperties do$> | |
.<$FetchedProperty.name$> = @"<$FetchedProperty.name$>",<$endforeach do$> | |
}; | |
<$endif$> | |
<$if hasUserInfoKeys$> | |
const struct <$managedObjectClassName$>UserInfo <$managedObjectClassName$>UserInfo = {<$foreach UserInfo userInfoKeyValues do$> | |
.<$UserInfo.key$> = @"<$UserInfo.value$>",<$endforeach do$> | |
}; | |
<$endif$> | |
@implementation <$managedObjectClassName$>ID | |
@end | |
@implementation _<$managedObjectClassName$> | |
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_ { | |
NSParameterAssert(moc_); | |
return [NSEntityDescription insertNewObjectForEntityForName:@"<$name$>" inManagedObjectContext:moc_]; | |
} | |
+ (NSString*)entityName { | |
return @"<$name$>"; | |
} | |
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_ { | |
NSParameterAssert(moc_); | |
return [NSEntityDescription entityForName:@"<$name$>" inManagedObjectContext:moc_]; | |
} | |
- (<$managedObjectClassName$>ID*)objectID { | |
return (<$managedObjectClassName$>ID*)[super objectID]; | |
} | |
<$if TemplateVar.scalarTypes$> | |
+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key { | |
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key]; | |
<$foreach Attribute noninheritedAttributes do$><$if Attribute.hasDefinedAttributeType$><$if Attribute.hasScalarAttributeType$> | |
if ([key isEqualToString:@"<$Attribute.name$>Value"]) { | |
NSSet *affectingKey = [NSSet setWithObject:@"<$Attribute.name$>"]; | |
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey]; | |
return keyPaths; | |
}<$endif$><$endif$><$endforeach do$> | |
return keyPaths; | |
} | |
<$endif$> | |
<$foreach Attribute noninheritedAttributes do$> | |
<$if Attribute.hasDefinedAttributeType$> | |
@dynamic <$Attribute.name$>; | |
<$if TemplateVar.scalarTypes$><$if Attribute.hasScalarAttributeType$> | |
- (<$Attribute.scalarAttributeType$>)<$Attribute.name$>Value { | |
NSNumber *result = [self <$Attribute.name$>]; | |
return [result <$Attribute.scalarAccessorMethodName$>]; | |
} | |
<$if ! Attribute.isReadonly$> | |
- (void)set<$Attribute.name.initialCapitalString$>Value:(<$Attribute.scalarAttributeType$>)value_ { | |
[self set<$Attribute.name.initialCapitalString$>:<$if TemplateVar.noliterals$>[NSNumber <$Attribute.scalarFactoryMethodName$>value_]<$else$>@(value_)<$endif$>]; | |
} | |
<$endif$> | |
- (<$Attribute.scalarAttributeType$>)primitive<$Attribute.name.initialCapitalString$>Value { | |
NSNumber *result = [self primitive<$Attribute.name.initialCapitalString$>]; | |
return [result <$Attribute.scalarAccessorMethodName$>]; | |
} | |
- (void)setPrimitive<$Attribute.name.initialCapitalString$>Value:(<$Attribute.scalarAttributeType$>)value_ { | |
[self setPrimitive<$Attribute.name.initialCapitalString$>:<$if TemplateVar.noliterals$>[NSNumber <$Attribute.scalarFactoryMethodName$>value_]<$else$>@(value_)<$endif$>]; | |
} | |
<$endif$> | |
<$endif$> | |
<$endif$> | |
<$endforeach do$> | |
<$foreach Relationship noninheritedRelationships do$> | |
@dynamic <$Relationship.name$>; | |
<$if Relationship.isToMany$> | |
- (<$Relationship.mutableCollectionClassName$>*)<$Relationship.name$>Set { | |
[self willAccessValueForKey:@"<$Relationship.name$>"]; | |
<$if Relationship.jr_isOrdered$> | |
<$Relationship.mutableCollectionClassName$> *result = (<$Relationship.mutableCollectionClassName$>*)[self mutableOrderedSetValueForKey:@"<$Relationship.name$>"]; | |
<$else$> | |
<$Relationship.mutableCollectionClassName$> *result = (<$Relationship.mutableCollectionClassName$>*)[self mutableSetValueForKey:@"<$Relationship.name$>"]; | |
<$endif$> | |
[self didAccessValueForKey:@"<$Relationship.name$>"]; | |
return result; | |
} | |
<$endif$> | |
<$endforeach do$> | |
<$foreach FetchedProperty noninheritedFetchedProperties do$> | |
@dynamic <$FetchedProperty.name$>; | |
<$endforeach do$> | |
<$foreach FetchRequest prettyFetchRequests do$> | |
<$if FetchRequest.singleResult$> | |
+ (id)fetch<$FetchRequest.name.initialCapitalString$>:(NSManagedObjectContext*)moc_ <$foreach Binding FetchRequest.bindings do2$><$Binding.name$>:(<$Binding.type$>)<$Binding.name$>_ <$endforeach do2$>{ | |
NSError *error = nil; | |
id result = [self fetch<$FetchRequest.name.initialCapitalString$>:moc_ <$foreach Binding FetchRequest.bindings do2$><$Binding.name$>:<$Binding.name$>_ <$endforeach do2$>error:&error]; | |
if (error) { | |
#ifdef NSAppKitVersionNumber10_0 | |
[NSApp presentError:error]; | |
#else | |
NSLog(@"error: %@", error); | |
#endif | |
} | |
return result; | |
} | |
+ (id)fetch<$FetchRequest.name.initialCapitalString$>:(NSManagedObjectContext*)moc_ <$foreach Binding FetchRequest.bindings do2$><$Binding.name$>:(<$Binding.type$>)<$Binding.name$>_ <$endforeach do2$>error:(NSError**)error_ { | |
NSParameterAssert(moc_); | |
NSError *error = nil; | |
NSManagedObjectModel *model = [[moc_ persistentStoreCoordinator] managedObjectModel]; | |
<$if FetchRequest.hasBindings$> | |
NSDictionary *substitutionVariables = [NSDictionary dictionaryWithObjectsAndKeys: | |
<$foreach Binding FetchRequest.bindings do2$> | |
<$Binding.name$>_, @"<$Binding.name$>", | |
<$endforeach do2$> | |
nil]; | |
<$else$> | |
NSDictionary *substitutionVariables = [NSDictionary dictionary]; | |
<$endif$> | |
NSFetchRequest *fetchRequest = [model fetchRequestFromTemplateWithName:@"<$FetchRequest.name$>" | |
substitutionVariables:substitutionVariables]; | |
NSAssert(fetchRequest, @"Can't find fetch request named \"<$FetchRequest.name$>\"."); | |
id result = nil; | |
NSArray *results = [moc_ executeFetchRequest:fetchRequest error:&error]; | |
if (!error) { | |
switch ([results count]) { | |
case 0: | |
// Nothing found matching the fetch request. That's cool, though: we'll just return nil. | |
break; | |
case 1: | |
result = [results objectAtIndex:0]; | |
break; | |
default: | |
NSLog(@"WARN fetch request <$FetchRequest.name$>: 0 or 1 objects expected, %lu found (substitutionVariables:%@, results:%@)", | |
(unsigned long)[results count], | |
substitutionVariables, | |
results); | |
} | |
} | |
if (error_) *error_ = error; | |
return result; | |
} | |
<$else$> | |
+ (NSArray*)fetch<$FetchRequest.name.initialCapitalString$>:(NSManagedObjectContext*)moc_ <$foreach Binding FetchRequest.bindings do2$><$Binding.name$>:(<$Binding.type$>)<$Binding.name$>_ <$endforeach do2$>{ | |
NSError *error = nil; | |
NSArray *result = [self fetch<$FetchRequest.name.initialCapitalString$>:moc_ <$foreach Binding FetchRequest.bindings do2$><$Binding.name$>:<$Binding.name$>_ <$endforeach do2$>error:&error]; | |
if (error) { | |
#ifdef NSAppKitVersionNumber10_0 | |
[NSApp presentError:error]; | |
#else | |
NSLog(@"error: %@", error); | |
#endif | |
} | |
return result; | |
} | |
+ (NSArray*)fetch<$FetchRequest.name.initialCapitalString$>:(NSManagedObjectContext*)moc_ <$foreach Binding FetchRequest.bindings do2$><$Binding.name$>:(<$Binding.type$>)<$Binding.name$>_ <$endforeach do2$>error:(NSError**)error_ { | |
NSParameterAssert(moc_); | |
NSError *error = nil; | |
NSManagedObjectModel *model = [[moc_ persistentStoreCoordinator] managedObjectModel]; | |
<$if FetchRequest.hasBindings$> | |
NSDictionary *substitutionVariables = [NSDictionary dictionaryWithObjectsAndKeys: | |
<$foreach Binding FetchRequest.bindings do2$> | |
<$Binding.name$>_, @"<$Binding.name$>", | |
<$endforeach do2$> | |
nil]; | |
<$else$> | |
NSDictionary *substitutionVariables = [NSDictionary dictionary]; | |
<$endif$> | |
NSFetchRequest *fetchRequest = [model fetchRequestFromTemplateWithName:@"<$FetchRequest.name$>" | |
substitutionVariables:substitutionVariables]; | |
NSAssert(fetchRequest, @"Can't find fetch request named \"<$FetchRequest.name$>\"."); | |
NSArray *result = [moc_ executeFetchRequest:fetchRequest error:&error]; | |
if (error_) *error_ = error; | |
return result; | |
} | |
<$endif$> | |
<$endforeach do$> | |
<$if TemplateVar.frc$> | |
#if TARGET_OS_IPHONE | |
<$foreach Relationship noninheritedRelationships do$> | |
<$if Relationship.isToMany$> | |
- (NSFetchedResultsController*)new<$Relationship.name.initialCapitalString$>FetchedResultsControllerWithSortDescriptors:(NSArray*)sortDescriptors { | |
NSFetchRequest *fetchRequest = [NSFetchRequest new]; | |
<$if !TemplateVar.arc$>[fetchRequest autorelease];<$endif$> | |
fetchRequest.entity = [NSEntityDescription entityForName:@"<$Relationship.destinationEntity.name$>" inManagedObjectContext:self.managedObjectContext]; | |
fetchRequest.predicate = [NSPredicate predicateWithFormat:@"<$Relationship.inverseRelationship.name$> <$if Relationship.inverseRelationship.isToMany$>CONTAINS<$else$>==<$endif$> %@", self]; | |
fetchRequest.sortDescriptors = sortDescriptors; | |
<$if indexedNoninheritedAttributes.@count > 0$> | |
NSArray *indexedIDs = [NSArray arrayWithObjects:<$foreach Attribute indexedNoninheritedAttributes do$>self.<$Attribute.name$>, <$endforeach do$>nil]; | |
NSString *cacheName = [NSString stringWithFormat:@"mogenerator.<$managedObjectClassName$>.%@.<$Relationship.name$>.%@", indexedIDs, sortDescriptors]; | |
<$endif$> | |
return [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest | |
managedObjectContext:self.managedObjectContext | |
sectionNameKeyPath:nil | |
cacheName:<$if indexedNoninheritedAttributes.@count > 0$>cacheName<$else$>nil<$endif$>]; | |
} | |
<$endif$> | |
<$endforeach do$> | |
#endif | |
<$endif$> | |
@end | |
<$foreach Relationship noninheritedRelationships do$><$if Relationship.isToMany$><$if Relationship.jr_isOrdered$> | |
@implementation _<$managedObjectClassName$> (<$Relationship.name.initialCapitalString$>CoreDataGeneratedAccessors) | |
- (void)add<$Relationship.name.initialCapitalString$>:(<$Relationship.immutableCollectionClassName$>*)value_ { | |
[self.<$Relationship.name$>Set unionOrderedSet:value_]; | |
} | |
- (void)remove<$Relationship.name.initialCapitalString$>:(<$Relationship.immutableCollectionClassName$>*)value_ { | |
[self.<$Relationship.name$>Set minusOrderedSet:value_]; | |
} | |
- (void)add<$Relationship.name.initialCapitalString$>Object:(<$Relationship.destinationEntity.managedObjectClassName$>*)value_ { | |
[self.<$Relationship.name$>Set addObject:value_]; | |
} | |
- (void)remove<$Relationship.name.initialCapitalString$>Object:(<$Relationship.destinationEntity.managedObjectClassName$>*)value_ { | |
[self.<$Relationship.name$>Set removeObject:value_]; | |
} | |
@end | |
<$endif$><$endif$><$endforeach do$> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment