-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathXCSubProjectDefinition.h
More file actions
59 lines (41 loc) · 1.69 KB
/
Copy pathXCSubProjectDefinition.h
File metadata and controls
59 lines (41 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
////////////////////////////////////////////////////////////////////////////////
//
// JASPER BLUES
// Copyright 2012 Jasper Blues
// All Rights Reserved.
//
// NOTICE: Jasper Blues permits you to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//
////////////////////////////////////////////////////////////////////////////////
#import <Foundation/Foundation.h>
#import <XcodeEditor/XCAbstractDefinition.h>
#import <XcodeEditor/XcodeSourceFileType.h>
@class XCProject;
@interface XCSubProjectDefinition : XCAbstractDefinition
{
NSString *_name;
NSString *_path;
XcodeSourceFileType _type;
XCProject *_subProject;
XCProject *_parentProject;
NSString *_key;
NSString *_fullProjectPath;
NSString *_relativePath;
}
@property (nonatomic, strong, readonly) NSString *name;
@property (nonatomic, strong, readonly) NSString *path;
@property (nonatomic, readonly) XcodeSourceFileType type;
@property (nonatomic, strong, readonly) XCProject *subProject;
@property (nonatomic, strong, readonly) XCProject *parentProject;
@property (nonatomic, strong, readonly) NSString *key;
@property (nonatomic, strong, readwrite) NSString *fullProjectPath;
+ (XCSubProjectDefinition *)withName:(NSString *)name path:(NSString *)path parentProject:(XCProject *)parentProject;
- (id)initWithName:(NSString *)name path:(NSString *)path parentProject:(XCProject *)parentProject;
- (NSString *)projectFileName;
- (NSString *)fullPathName;
- (NSArray<NSString*> *)buildProductNames;
- (NSString *)projectKey;
- (NSString *)pathRelativeToProjectRoot;
- (void)initFullProjectPath:(NSString *)fullProjectPath groupPath:(NSString *)groupPath;
@end