summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/scriptingbridge/SBElementArray.inc
blob: 2c2a75e436d624593c73595a1fc107e77cbb3a50 (plain)
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
{ Parsed from ScriptingBridge.framework SBElementArray.h }


{$ifdef TYPES}
type
  SBElementArrayPtr = ^SBElementArray;
{$endif}

{$ifdef CLASSES}

type
  SBElementArray = objcclass external (NSMutableArray)
  private
    _parent: SBObject;
    _elementCode: DescType;
    _reserved: pointer;
  public
    function objectWithName (name: NSString): id; message 'objectWithName:';
    function objectWithID (identifier: id): id; message 'objectWithID:';
    function objectAtLocation (location: id): id; message 'objectAtLocation:';
    function arrayByApplyingSelector (selector: SEL): NSArray; message 'arrayByApplyingSelector:';
    function arrayByApplyingSelector_withObject (aSelector: SEL; argument: id): NSArray; message 'arrayByApplyingSelector:withObject:';
    function get: NSArray; message 'get';
  end;
{$endif}