-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from ChristianKienle/develop
Develop
- Loading branch information
Showing
24 changed files
with
534 additions
and
985 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
#import "_CDEConfiguration.h" | ||
@interface CDEConfiguration : NSObject | ||
|
||
@interface CDEConfiguration : _CDEConfiguration | ||
|
||
#pragma mark - Getting the only Configuration object | ||
+ (CDEConfiguration *)fetchedConfigurationInManagedObjectContext:(NSManagedObjectContext *)managedObjectContext error:(NSError **)error; | ||
+ (BOOL)configurationExistsInManagedObjectContext:(NSManagedObjectContext *)managedObjectContext error:(NSError **)error; | ||
#pragma mark - Properties | ||
@property (nullable, readonly) NSURL *storeURL, *modelURL, *applicationBundleURL; | ||
@property (nullable, copy) NSString *applicationBundlePath; | ||
@property (nullable, strong) NSDictionary *autosaveInformationByEntityName; | ||
@property (nullable, copy) NSNumber *isMacApplication; | ||
@property (nullable, copy) NSString *modelPath; | ||
@property (nullable, copy) NSString *storePath; | ||
|
||
#pragma mark - Properties | ||
@property (nonatomic, readonly, getter = isValid) BOOL isValid; | ||
|
||
#pragma mark - Setting Bookmark Data in Batch | ||
- (BOOL)setBookmarkDataWithApplicationBundleURL:(NSURL *)applicationBundleURL storeURL:(NSURL *)storeURL modelURL:(NSURL *)modelURL error:(NSError **)error; | ||
#pragma mark - Setting URLs | ||
- (void)setApplicationBundleURL:(nullable NSURL *)applicationBundleURL storeURL:(nullable NSURL *)storeURL modelURL:(nullable NSURL *)modelURL; | ||
|
||
- (NSData * _Nonnull )data; | ||
- (nullable instancetype)initWithData:(NSData * _Nullable )data; | ||
|
||
@end |
Oops, something went wrong.