SBElementArray.inc 825 B

1234567891011121314151617181920212223242526
  1. { Parsed from ScriptingBridge.framework SBElementArray.h }
  2. {$ifdef TYPES}
  3. type
  4. SBElementArrayPtr = ^SBElementArray;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. SBElementArray = objcclass external (NSMutableArray)
  9. private
  10. _parent: SBObject;
  11. _elementCode: DescType;
  12. _reserved: pointer;
  13. public
  14. function objectWithName (name: NSString): id; message 'objectWithName:';
  15. function objectWithID (identifier: id): id; message 'objectWithID:';
  16. function objectAtLocation (location: id): id; message 'objectAtLocation:';
  17. function arrayByApplyingSelector (selector: SEL): NSArray; message 'arrayByApplyingSelector:';
  18. function arrayByApplyingSelector_withObject (aSelector: SEL; argument: id): NSArray; message 'arrayByApplyingSelector:withObject:';
  19. function get: NSArray; message 'get';
  20. end;
  21. {$endif}