summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/foundation/NSScriptExecutionContext.inc
blob: 40ec4ce874e6f6b103b2fccff7ec3325a1df387e (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
27
28
{ Parsed from Foundation.framework NSScriptExecutionContext.h }


{$ifdef TYPES}
type
  NSScriptExecutionContextPtr = ^NSScriptExecutionContext;
{$endif}

{$ifdef CLASSES}

type
  NSScriptExecutionContext = objcclass external (NSObject)
  private
    _topLevelObject: id;
    _objectBeingTested: id;
    _rangeContainerObject: id;
    _moreVars: id;
  public
    class function sharedScriptExecutionContext: NSScriptExecutionContext; message 'sharedScriptExecutionContext';
    procedure setTopLevelObject(newValue: id); message 'setTopLevelObject:';
    function topLevelObject: id; message 'topLevelObject';
    procedure setObjectBeingTested(newValue: id); message 'setObjectBeingTested:';
    function objectBeingTested: id; message 'objectBeingTested';
    procedure setRangeContainerObject(newValue: id); message 'setRangeContainerObject:';
    function rangeContainerObject: id; message 'rangeContainerObject';
  end;
{$endif}