mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-23 12:09:51 +00:00
16 lines
486 B
Objective-C
16 lines
486 B
Objective-C
#import <CoreData/NSManagedObjectID.h>
|
|
|
|
@interface NSManagedObjectID (private)
|
|
- initWithEntity: (NSEntityDescription *) entity;
|
|
- (NSString *) storeIdentifier;
|
|
|
|
// Do not use referenceObject directly except for debugging
|
|
// Use -[NSAtomicStore referenceObjectForUniqueID:] as this needs to unique the
|
|
// ID
|
|
- referenceObject;
|
|
|
|
- (void) setStoreIdentifier: (NSString *) storeIdentifier;
|
|
- (void) setReferenceObject: value;
|
|
- (void) setPersistentStore: (NSPersistentStore *) store;
|
|
@end
|