Up
Authors
- Stefan Urbanek (
urbanek@host.sk
)
-
Date: Generated at 2024-07-10 08:38:24 +0000
Copyright: (C) 2002 Stefan Urbanek
- Declared in:
- StepTalk/STScriptsManager.h
Description forthcoming.
Instance Variables
Method summary
+ (id)
defaultManager;
Returns default scripts manager for current process
(application or tool).
- (
NSArray*)
allScripts;
Return list of all scripts for managed domain.
- (id)
initWithDomainName: (
NSString*)name;
This is a designated initialiser for the class.
Initializes the receiver to be used with domain
named name. If name is
nil
, default scripts domain
name will be used.
- (
NSArray*)
scriptSearchPaths;
Retrun an array of script search paths. Scripts are
searched in Library/StepTalk/Scripts/
scriptsDomainName,
Library/StepTalk/Scripts/Shared
and in all loaded bundles in bundlePath
/Resources/Scripts.
- (
STFileScript*)
scriptWithName: (
NSString*)aString;
Get a script with name aString for current
scripting domain.
- (
NSString*)
scriptsDomainName;
Return name of script manager domain.
- (void)
setScriptSearchPaths: (
NSArray*)anArray;
Set script search paths to anArray.
- (void)
setScriptSearchPathsToDefaults;
Description forthcoming.
- (
NSArray*)
validScriptSearchPaths;
Return script search paths that are valid. That
means that path exists and is a directory.
Instance Variables for STScriptsManager Class
@protected NSArray* scriptSearchPaths;
Description forthcoming.
@protected NSString* scriptsDomainName;
Description forthcoming.
Up