/ src / frameworks / ScriptingBridge / src / SBElementArray.m
SBElementArray.m
 1  #import <ScriptingBridge/SBElementArray.h>
 2  
 3  @implementation SBElementArray
 4  
 5  - (id) objectWithName:(NSString *)name {
 6      return nil;
 7  }
 8  
 9  - (id) objectWithID:(id)identifier {
10      return nil;
11  }
12  
13  - (id) objectAtLocation:(id)location {
14      return nil;
15  }
16  
17  - (NSArray<id> *) arrayByApplyingSelector:(SEL)selector {
18      return nil;
19  }
20  
21  - (NSArray<id> *) arrayByApplyingSelector:(SEL)aSelector withObject:(id)argument {
22      return nil;
23  }
24  
25  - (nullable NSArray<id> *) get {
26      return nil;
27  }
28  
29  @end