mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-21 02:31:01 +00:00
Regenerated docs
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@21706 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
11a76485a1
commit
38781ad778
28 changed files with 73 additions and 547 deletions
|
@ -4,9 +4,6 @@
|
|||
<head>
|
||||
<title>NSInvocation class additions</title>
|
||||
<author name="Stefan Urbanek">
|
||||
<email address="urbanek@host.sk">
|
||||
urbanek@host.sk
|
||||
</email>
|
||||
</author>
|
||||
<copy>2002 Free Software Foundation</copy>
|
||||
</head>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<h1><a name="title$NSInvocation+additions">NSInvocation class additions</a></h1>
|
||||
<h3>Authors</h3>
|
||||
<dl>
|
||||
<dt>Stefan Urbanek (<a href="mailto:urbanek@host.sk"><code>urbanek@host.sk</code></a>)</dt>
|
||||
<dt>Stefan Urbanek</dt>
|
||||
<dd>
|
||||
</dd>
|
||||
</dl>
|
||||
|
|
|
@ -4,9 +4,6 @@
|
|||
<head>
|
||||
<title>STBundleInfo class documentation</title>
|
||||
<author name="Stefan Urbanek">
|
||||
<email address="urbanek@host.sk">
|
||||
urbanek@host.sk
|
||||
</email>
|
||||
</author>
|
||||
<copy>2002 Free Software Foundation</copy>
|
||||
</head>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<h1><a name="title$STBundleInfo">STBundleInfo class documentation</a></h1>
|
||||
<h3>Authors</h3>
|
||||
<dl>
|
||||
<dt>Stefan Urbanek (<a href="mailto:urbanek@host.sk"><code>urbanek@host.sk</code></a>)</dt>
|
||||
<dt>Stefan Urbanek</dt>
|
||||
<dd>
|
||||
</dd>
|
||||
</dl>
|
||||
|
|
|
@ -4,9 +4,6 @@
|
|||
<head>
|
||||
<title>STEngine class documentation</title>
|
||||
<author name="Stefan Urbanek">
|
||||
<email address="urbanek@host.sk">
|
||||
urbanek@host.sk
|
||||
</email>
|
||||
</author>
|
||||
<copy>2002 Free Software Foundation</copy>
|
||||
</head>
|
||||
|
@ -22,46 +19,13 @@
|
|||
STEngine is abstract class for language engines used
|
||||
to intepret scripts.
|
||||
</desc>
|
||||
<method type="STEngine*" factory="yes">
|
||||
<sel>engineForFileType:</sel>
|
||||
<arg type="NSString*">fileType</arg>
|
||||
<desc>
|
||||
<em>Description forthcoming.</em>
|
||||
</desc>
|
||||
</method>
|
||||
<method type="STEngine*" factory="yes">
|
||||
<sel>engineForLanguage:</sel>
|
||||
<arg type="NSString*">name</arg>
|
||||
<desc>
|
||||
Return a scripting engine for language with
|
||||
specified <var>name</var>. The engine is get from
|
||||
default language manager.
|
||||
</desc>
|
||||
</method>
|
||||
<method type="STEngine*" factory="yes">
|
||||
<sel>engineForLanguageWithName:</sel>
|
||||
<arg type="NSString*">name</arg>
|
||||
<desc>
|
||||
Instance creation
|
||||
</desc>
|
||||
</method>
|
||||
<method type="BOOL">
|
||||
<sel>canInterpret:</sel>
|
||||
<arg type="NSString*">sourceCode</arg>
|
||||
<desc>
|
||||
<em>Description forthcoming.</em>
|
||||
</desc>
|
||||
</method>
|
||||
<method type="id" override="subclass">
|
||||
<sel>executeCode:</sel>
|
||||
<arg type="NSString*">code</arg>
|
||||
<sel>inEnvironment:</sel>
|
||||
<arg type="STEnvironment*">env</arg>
|
||||
<desc>
|
||||
Execude source <var>code</var> <var>code</var> in
|
||||
an environment <var>env</var>. This is the method, that
|
||||
has to be implemented by those who are writing a
|
||||
language engine.
|
||||
Instance creation <br /> Return a scripting engine
|
||||
for language with specified <var>name</var>. The engine
|
||||
is get from default language manager.
|
||||
</desc>
|
||||
</method>
|
||||
<method type="id">
|
||||
|
@ -71,32 +35,22 @@
|
|||
<arg type="id">anObject</arg>
|
||||
<sel>withArguments:</sel>
|
||||
<arg type="NSArray*">args</arg>
|
||||
<sel>inEnvironment:</sel>
|
||||
<arg type="STEnvironment*">env</arg>
|
||||
<desc>
|
||||
<em>Description forthcoming.</em>
|
||||
</desc>
|
||||
</method>
|
||||
<method type="id">
|
||||
<sel>interpretMethod:</sel>
|
||||
<arg type="id<STMethod>">aMethod</arg>
|
||||
<sel>forReceiver:</sel>
|
||||
<arg type="id">anObject</arg>
|
||||
<sel>withArguments:</sel>
|
||||
<arg type="NSArray*">args</arg>
|
||||
<sel>inContext:</sel>
|
||||
<arg type="STContext*">context</arg>
|
||||
<arg type="STContext*">env</arg>
|
||||
<desc>
|
||||
<em>Description forthcoming.</em>
|
||||
</desc>
|
||||
</method>
|
||||
<method type="id">
|
||||
<method type="id" override="subclass">
|
||||
<sel>interpretScript:</sel>
|
||||
<arg type="NSString*">script</arg>
|
||||
<sel>inContext:</sel>
|
||||
<arg type="STContext*">context</arg>
|
||||
<desc>
|
||||
<em>Description forthcoming.</em>
|
||||
Interpret source code <var>code</var> in a
|
||||
<var>context</var> <var>context</var>. This is the
|
||||
method, that has to be implemented by those who are
|
||||
writing a language engine.
|
||||
</desc>
|
||||
</method>
|
||||
<method type="STMethod*">
|
||||
|
@ -105,27 +59,7 @@
|
|||
<sel>forReceiver:</sel>
|
||||
<arg type="id">receiver</arg>
|
||||
<sel>inContext:</sel>
|
||||
<arg type="STContext*">context</arg>
|
||||
<desc>
|
||||
<em>Description forthcoming.</em>
|
||||
</desc>
|
||||
</method>
|
||||
<method type="STMethod*">
|
||||
<sel>methodFromSource:</sel>
|
||||
<arg type="NSString*">sourceString</arg>
|
||||
<sel>forReceiver:</sel>
|
||||
<arg type="id">receiver</arg>
|
||||
<sel>inEnvironment:</sel>
|
||||
<arg type="STEnvironment*">env</arg>
|
||||
<desc>
|
||||
<em>Description forthcoming.</em>
|
||||
</desc>
|
||||
</method>
|
||||
<method type="void">
|
||||
<sel>setValue:</sel>
|
||||
<arg type="id">anObject</arg>
|
||||
<sel>forOption:</sel>
|
||||
<arg type="NSString*">anOption</arg>
|
||||
<arg type="STContext*">env</arg>
|
||||
<desc>
|
||||
<em>Description forthcoming.</em>
|
||||
</desc>
|
||||
|
@ -137,13 +71,6 @@
|
|||
<em>Description forthcoming.</em>
|
||||
</desc>
|
||||
</method>
|
||||
<method type="id">
|
||||
<sel>valueForOption:</sel>
|
||||
<arg type="NSString*">anOption</arg>
|
||||
<desc>
|
||||
<em>Description forthcoming.</em>
|
||||
</desc>
|
||||
</method>
|
||||
</class>
|
||||
</chapter>
|
||||
</body>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<h1><a name="title$STEngine">STEngine class documentation</a></h1>
|
||||
<h3>Authors</h3>
|
||||
<dl>
|
||||
<dt>Stefan Urbanek (<a href="mailto:urbanek@host.sk"><code>urbanek@host.sk</code></a>)</dt>
|
||||
<dt>Stefan Urbanek</dt>
|
||||
<dd>
|
||||
</dd>
|
||||
</dl>
|
||||
|
@ -37,82 +37,25 @@
|
|||
</p>
|
||||
<b>Method summary</b>
|
||||
<ul>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine+engineForFileType:">+engineForFileType:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine+engineForLanguage:">+engineForLanguage:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine+engineForLanguageWithName:">+engineForLanguageWithName:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-canInterpret:">-canInterpret:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-defaultEnvironment">-defaultEnvironment</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-executeCode:">-executeCode:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-executeCode:inEnvironment:">-executeCode:inEnvironment:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-executeMethod:forReceiver:withArguments:inEnvironment:">-executeMethod:forReceiver:withArguments:inEnvironment:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-executeMethod:forScriptObject:">-executeMethod:forScriptObject:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-interpretMethod:forReceiver:withArguments:inContext:">-interpretMethod:forReceiver:withArguments:inContext:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-executeMethod:forReceiver:withArguments:inContext:">-executeMethod:forReceiver:withArguments:inContext:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-interpretScript:inContext:">-interpretScript:inContext:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-methodFromSource:forReceiver:inContext:">-methodFromSource:forReceiver:inContext:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-methodFromSource:forReceiver:inEnvironment:">-methodFromSource:forReceiver:inEnvironment:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-methodFromSource:forScriptObject:">-methodFromSource:forScriptObject:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-setDefaultEnvironment:">-setDefaultEnvironment:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-setValue:forOption:">-setValue:forOption:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-understandsCode:">-understandsCode:</a></li>
|
||||
<li><a rel="gsdoc" href="STEngine.html#method$STEngine-valueForOption:">-valueForOption:</a></li>
|
||||
</ul>
|
||||
<hr width="50%" align="left" />
|
||||
<h3><a name="method$STEngine+engineForFileType:">engineForFileType: </a></h3>
|
||||
+ (<a rel="gsdoc" href="#class$STEngine">STEngine</a>*) <b>engineForFileType:</b> (NSString*)fileType;<br />
|
||||
<p>
|
||||
|
||||
<em>Description forthcoming.</em>
|
||||
|
||||
</p>
|
||||
<hr width="25%" align="left" />
|
||||
<h3><a name="method$STEngine+engineForLanguage:">engineForLanguage: </a></h3>
|
||||
+ (<a rel="gsdoc" href="#class$STEngine">STEngine</a>*) <b>engineForLanguage:</b> (NSString*)name;<br />
|
||||
<p>
|
||||
|
||||
Return a scripting engine for language with
|
||||
specified <var>name</var>. The engine is get from
|
||||
default language manager.
|
||||
Instance creation <br /> Return a scripting engine
|
||||
for language with specified <var>name</var>. The engine
|
||||
is get from default language manager.
|
||||
|
||||
</p>
|
||||
<hr width="25%" align="left" />
|
||||
<h3><a name="method$STEngine+engineForLanguageWithName:">engineForLanguageWithName: </a></h3>
|
||||
+ (<a rel="gsdoc" href="#class$STEngine">STEngine</a>*) <b>engineForLanguageWithName:</b> (NSString*)name;<br />
|
||||
<p>
|
||||
|
||||
Instance creation
|
||||
|
||||
</p>
|
||||
<hr width="25%" align="left" />
|
||||
<h3><a name="method$STEngine-canInterpret:">canInterpret: </a></h3>
|
||||
- (BOOL) <b>canInterpret:</b> (NSString*)sourceCode;<br />
|
||||
<p>
|
||||
|
||||
<em>Description forthcoming.</em>
|
||||
|
||||
</p>
|
||||
<hr width="25%" align="left" />
|
||||
<h3><a name="method$STEngine-executeCode:inEnvironment:">executeCode: inEnvironment: </a></h3>
|
||||
- (id) <b>executeCode:</b> (NSString*)code<b> inEnvironment:</b> (<a rel="gsdoc" href="STEnvironment.html#class$STEnvironment">STEnvironment</a>*)env;<br />
|
||||
Subclasses <strong>should</strong> override this method.<br />
|
||||
<p>
|
||||
|
||||
Execude source <var>code</var> <var>code</var> in
|
||||
an environment <var>env</var>. This is the method, that
|
||||
has to be implemented by those who are writing a
|
||||
language engine.
|
||||
|
||||
</p>
|
||||
<hr width="25%" align="left" />
|
||||
<h3><a name="method$STEngine-executeMethod:forReceiver:withArguments:inEnvironment:">executeMethod: forReceiver: withArguments: inEnvironment: </a></h3>
|
||||
- (id) <b>executeMethod:</b> (id<<a rel="gsdoc" href="STMethod.html#protocol$(STMethod)">STMethod</a>>)aMethod<b> forReceiver:</b> (id)anObject<b> withArguments:</b> (NSArray*)args<b> inEnvironment:</b> (<a rel="gsdoc" href="STEnvironment.html#class$STEnvironment">STEnvironment</a>*)env;<br />
|
||||
<p>
|
||||
|
||||
<em>Description forthcoming.</em>
|
||||
|
||||
</p>
|
||||
<hr width="25%" align="left" />
|
||||
<h3><a name="method$STEngine-interpretMethod:forReceiver:withArguments:inContext:">interpretMethod: forReceiver: withArguments: inContext: </a></h3>
|
||||
- (id) <b>interpretMethod:</b> (id<<a rel="gsdoc" href="STMethod.html#protocol$(STMethod)">STMethod</a>>)aMethod<b> forReceiver:</b> (id)anObject<b> withArguments:</b> (NSArray*)args<b> inContext:</b> (<a rel="gsdoc" href="STContext.html#class$STContext">STContext</a>*)context;<br />
|
||||
<h3><a name="method$STEngine-executeMethod:forReceiver:withArguments:inContext:">executeMethod: forReceiver: withArguments: inContext: </a></h3>
|
||||
- (id) <b>executeMethod:</b> (id<<a rel="gsdoc" href="STMethod.html#protocol$(STMethod)">STMethod</a>>)aMethod<b> forReceiver:</b> (id)anObject<b> withArguments:</b> (NSArray*)args<b> inContext:</b> (<a rel="gsdoc" href="STContext.html#class$STContext">STContext</a>*)env;<br />
|
||||
<p>
|
||||
|
||||
<em>Description forthcoming.</em>
|
||||
|
@ -121,30 +64,18 @@ Subclasses <strong>should</strong> override this method.<br />
|
|||
<hr width="25%" align="left" />
|
||||
<h3><a name="method$STEngine-interpretScript:inContext:">interpretScript: inContext: </a></h3>
|
||||
- (id) <b>interpretScript:</b> (NSString*)script<b> inContext:</b> (<a rel="gsdoc" href="STContext.html#class$STContext">STContext</a>*)context;<br />
|
||||
Subclasses <strong>should</strong> override this method.<br />
|
||||
<p>
|
||||
|
||||
<em>Description forthcoming.</em>
|
||||
Interpret source code <var>code</var> in a
|
||||
<var>context</var> <var>context</var>. This is the
|
||||
method, that has to be implemented by those who are
|
||||
writing a language engine.
|
||||
|
||||
</p>
|
||||
<hr width="25%" align="left" />
|
||||
<h3><a name="method$STEngine-methodFromSource:forReceiver:inContext:">methodFromSource: forReceiver: inContext: </a></h3>
|
||||
- (<a rel="gsdoc" href="STMethod.html#class$STMethod">STMethod</a>*) <b>methodFromSource:</b> (NSString*)sourceString<b> forReceiver:</b> (id)receiver<b> inContext:</b> (<a rel="gsdoc" href="STContext.html#class$STContext">STContext</a>*)context;<br />
|
||||
<p>
|
||||
|
||||
<em>Description forthcoming.</em>
|
||||
|
||||
</p>
|
||||
<hr width="25%" align="left" />
|
||||
<h3><a name="method$STEngine-methodFromSource:forReceiver:inEnvironment:">methodFromSource: forReceiver: inEnvironment: </a></h3>
|
||||
- (<a rel="gsdoc" href="STMethod.html#class$STMethod">STMethod</a>*) <b>methodFromSource:</b> (NSString*)sourceString<b> forReceiver:</b> (id)receiver<b> inEnvironment:</b> (<a rel="gsdoc" href="STEnvironment.html#class$STEnvironment">STEnvironment</a>*)env;<br />
|
||||
<p>
|
||||
|
||||
<em>Description forthcoming.</em>
|
||||
|
||||
</p>
|
||||
<hr width="25%" align="left" />
|
||||
<h3><a name="method$STEngine-setValue:forOption:">setValue: forOption: </a></h3>
|
||||
- (void) <b>setValue:</b> (id)anObject<b> forOption:</b> (NSString*)anOption;<br />
|
||||
- (STMethod*) <b>methodFromSource:</b> (NSString*)sourceString<b> forReceiver:</b> (id)receiver<b> inContext:</b> (<a rel="gsdoc" href="STContext.html#class$STContext">STContext</a>*)env;<br />
|
||||
<p>
|
||||
|
||||
<em>Description forthcoming.</em>
|
||||
|
@ -157,14 +88,6 @@ Subclasses <strong>should</strong> override this method.<br />
|
|||
|
||||
<em>Description forthcoming.</em>
|
||||
|
||||
</p>
|
||||
<hr width="25%" align="left" />
|
||||
<h3><a name="method$STEngine-valueForOption:">valueForOption: </a></h3>
|
||||
- (id) <b>valueForOption:</b> (NSString*)anOption;<br />
|
||||
<p>
|
||||
|
||||
<em>Description forthcoming.</em>
|
||||
|
||||
</p>
|
||||
<hr width="25%" align="left" />
|
||||
<br />
|
||||
|
|
|
@ -4,9 +4,6 @@
|
|||
<head>
|
||||
<title>STEnvironment class reference</title>
|
||||
<author name="Stefan Urbanek">
|
||||
<email address="urbanek@host.sk">
|
||||
urbanek@host.sk
|
||||
</email>
|
||||
</author>
|
||||
<copy>2002 Free Software Foundation</copy>
|
||||
</head>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<h1><a name="title$STEnvironment">STEnvironment class reference</a></h1>
|
||||
<h3>Authors</h3>
|
||||
<dl>
|
||||
<dt>Stefan Urbanek (<a href="mailto:urbanek@host.sk"><code>urbanek@host.sk</code></a>)</dt>
|
||||
<dt>Stefan Urbanek</dt>
|
||||
<dd>
|
||||
</dd>
|
||||
</dl>
|
||||
|
@ -39,33 +39,18 @@
|
|||
<br/><br/>
|
||||
<b>Method summary</b>
|
||||
<ul>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment+defaultScriptingEnvironment">+defaultScriptingEnvironment</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment+environmentWithDefaultDescription">+environmentWithDefaultDescription</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment+environmentWithDescription:">+environmentWithDescription:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment+environmentWithDescriptionName:">+environmentWithDescriptionName:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment+sharedEnvironment">+sharedEnvironment</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-addClassesWithNames:">-addClassesWithNames:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-addNamedObjectsFromDictionary:">-addNamedObjectsFromDictionary:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-createsUnknownObjects">-createsUnknownObjects</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-fullScriptingEnabled">-fullScriptingEnabled</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-includeBundle:">-includeBundle:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-includeFramework:">-includeFramework:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-initDefault">-initDefault</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-initWithDefaultDescription">-initWithDefaultDescription</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-initWithDescription:">-initWithDescription:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-initWithDescriptionName:">-initWithDescriptionName:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-knownObjectNames">-knownObjectNames</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-loadModule:">-loadModule:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-objectDictionary">-objectDictionary</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-objectReferenceForObjectWithName:">-objectReferenceForObjectWithName:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-objectWithName:">-objectWithName:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-registerObjectFinder:name:">-registerObjectFinder:name:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-registerObjectFinderNamed:">-registerObjectFinderNamed:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-removeObjectFinderWithName:">-removeObjectFinderWithName:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-removeObjectWithName:">-removeObjectWithName:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-setCreatesUnknownObjects:">-setCreatesUnknownObjects:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-setFullScriptingEnabled:">-setFullScriptingEnabled:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-setObject:forName:">-setObject:forName:</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironment.html#method$STEnvironment-translateSelector:forReceiver:">-translateSelector:forReceiver:</a></li>
|
||||
</ul>
|
||||
<hr width="50%" align="left" />
|
||||
|
|
|
@ -4,9 +4,6 @@
|
|||
<head>
|
||||
<title>STExterns documentation</title>
|
||||
<author name="Stefan Urbanek">
|
||||
<email address="urbanek@host.sk">
|
||||
urbanek@host.sk
|
||||
</email>
|
||||
</author>
|
||||
<copy>2002 Free Software Foundation</copy>
|
||||
</head>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<h1><a name="title$STExterns">STExterns documentation</a></h1>
|
||||
<h3>Authors</h3>
|
||||
<dl>
|
||||
<dt>Stefan Urbanek (<a href="mailto:urbanek@host.sk"><code>urbanek@host.sk</code></a>)</dt>
|
||||
<dt>Stefan Urbanek</dt>
|
||||
<dd>
|
||||
</dd>
|
||||
</dl>
|
||||
|
|
|
@ -4,9 +4,6 @@
|
|||
<head>
|
||||
<title>STFunctions documentation</title>
|
||||
<author name="Stefan Urbanek">
|
||||
<email address="urbanek@host.sk">
|
||||
urbanek@host.sk
|
||||
</email>
|
||||
</author>
|
||||
<copy>2002 Free Software Foundation</copy>
|
||||
</head>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<h1><a name="title$STFunctions">STFunctions documentation</a></h1>
|
||||
<h3>Authors</h3>
|
||||
<dl>
|
||||
<dt>Stefan Urbanek (<a href="mailto:urbanek@host.sk"><code>urbanek@host.sk</code></a>)</dt>
|
||||
<dt>Stefan Urbanek</dt>
|
||||
<dd>
|
||||
</dd>
|
||||
</dl>
|
||||
|
|
|
@ -4,9 +4,6 @@
|
|||
<head>
|
||||
<title>STMethod documentation</title>
|
||||
<author name="Stefan Urbanek">
|
||||
<email address="urbanek@host.sk">
|
||||
urbanek@host.sk
|
||||
</email>
|
||||
</author>
|
||||
<copy>2003 Free Software Foundation</copy>
|
||||
</head>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<h1><a name="title$STMethod">STMethod documentation</a></h1>
|
||||
<h3>Authors</h3>
|
||||
<dl>
|
||||
<dt>Stefan Urbanek (<a href="mailto:urbanek@host.sk"><code>urbanek@host.sk</code></a>)</dt>
|
||||
<dt>Stefan Urbanek</dt>
|
||||
<dd>
|
||||
</dd>
|
||||
</dl>
|
||||
|
|
|
@ -4,9 +4,6 @@
|
|||
<head>
|
||||
<title>STObjCRuntime documentation</title>
|
||||
<author name="Stefan Urbanek">
|
||||
<email address="urbanek@host.sk">
|
||||
urbanek@host.sk
|
||||
</email>
|
||||
</author>
|
||||
<copy>2002 Free Software Foundation</copy>
|
||||
</head>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<h1><a name="title$STObjCRuntime">STObjCRuntime documentation</a></h1>
|
||||
<h3>Authors</h3>
|
||||
<dl>
|
||||
<dt>Stefan Urbanek (<a href="mailto:urbanek@host.sk"><code>urbanek@host.sk</code></a>)</dt>
|
||||
<dt>Stefan Urbanek</dt>
|
||||
<dd>
|
||||
</dd>
|
||||
</dl>
|
||||
|
|
|
@ -4,9 +4,6 @@
|
|||
<head>
|
||||
<title>STObjectReference class documentation</title>
|
||||
<author name="Stefan Urbanek">
|
||||
<email address="urbanek@host.sk">
|
||||
urbanek@host.sk
|
||||
</email>
|
||||
</author>
|
||||
<copy>2002 Free Software Foundation</copy>
|
||||
</head>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<h1><a name="title$STObjectReference">STObjectReference class documentation</a></h1>
|
||||
<h3>Authors</h3>
|
||||
<dl>
|
||||
<dt>Stefan Urbanek (<a href="mailto:urbanek@host.sk"><code>urbanek@host.sk</code></a>)</dt>
|
||||
<dt>Stefan Urbanek</dt>
|
||||
<dd>
|
||||
</dd>
|
||||
</dl>
|
||||
|
@ -41,13 +41,8 @@
|
|||
<ul>
|
||||
<li><a rel="gsdoc" href="STObjectReference.html#method$STObjectReference-identifier">-identifier</a></li>
|
||||
<li><a rel="gsdoc" href="STObjectReference.html#method$STObjectReference-initWithIdentifier:target:">-initWithIdentifier:target:</a></li>
|
||||
<li><a rel="gsdoc" href="STObjectReference.html#method$STObjectReference-initWithObjectName:pool:">-initWithObjectName:pool:</a></li>
|
||||
<li><a rel="gsdoc" href="STObjectReference.html#method$STObjectReference-object">-object</a></li>
|
||||
<li><a rel="gsdoc" href="STObjectReference.html#method$STObjectReference-objectName">-objectName</a></li>
|
||||
<li><a rel="gsdoc" href="STObjectReference.html#method$STObjectReference-pool">-pool</a></li>
|
||||
<li><a rel="gsdoc" href="STObjectReference.html#method$STObjectReference-setObject:">-setObject:</a></li>
|
||||
<li><a rel="gsdoc" href="STObjectReference.html#method$STObjectReference-setObjectName:">-setObjectName:</a></li>
|
||||
<li><a rel="gsdoc" href="STObjectReference.html#method$STObjectReference-setPool:">-setPool:</a></li>
|
||||
<li><a rel="gsdoc" href="STObjectReference.html#method$STObjectReference-target">-target</a></li>
|
||||
</ul>
|
||||
<hr width="50%" align="left" />
|
||||
|
|
|
@ -39,16 +39,9 @@
|
|||
<br/><br/>
|
||||
<b>Method summary</b>
|
||||
<ul>
|
||||
<li><a rel="gsdoc" href="STScript.html#method$STScript+scriptWithFile:">+scriptWithFile:</a></li>
|
||||
<li><a rel="gsdoc" href="STScript.html#method$STScript+scriptWithSource:language:">+scriptWithSource:language:</a></li>
|
||||
<li><a rel="gsdoc" href="STScript.html#method$STScript-compareByLocalizedName:">-compareByLocalizedName:</a></li>
|
||||
<li><a rel="gsdoc" href="STScript.html#method$STScript-fileName">-fileName</a></li>
|
||||
<li><a rel="gsdoc" href="STScript.html#method$STScript-initWithFile:">-initWithFile:</a></li>
|
||||
<li><a rel="gsdoc" href="STScript.html#method$STScript-initWithSource:language:">-initWithSource:language:</a></li>
|
||||
<li><a rel="gsdoc" href="STScript.html#method$STScript-language">-language</a></li>
|
||||
<li><a rel="gsdoc" href="STScript.html#method$STScript-localizedName">-localizedName</a></li>
|
||||
<li><a rel="gsdoc" href="STScript.html#method$STScript-scriptDescription">-scriptDescription</a></li>
|
||||
<li><a rel="gsdoc" href="STScript.html#method$STScript-scriptName">-scriptName</a></li>
|
||||
<li><a rel="gsdoc" href="STScript.html#method$STScript-setLanguage:">-setLanguage:</a></li>
|
||||
<li><a rel="gsdoc" href="STScript.html#method$STScript-setSource:">-setSource:</a></li>
|
||||
<li><a rel="gsdoc" href="STScript.html#method$STScript-source">-source</a></li>
|
||||
|
|
|
@ -4,9 +4,6 @@
|
|||
<head>
|
||||
<title>STScripting protocol documentation</title>
|
||||
<author name="Stefan Urbanek">
|
||||
<email address="urbanek@host.sk">
|
||||
urbanek@host.sk
|
||||
</email>
|
||||
</author>
|
||||
<copy>2002 Free Software Foundation</copy>
|
||||
</head>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<h1><a name="title$STScripting">STScripting protocol documentation</a></h1>
|
||||
<h3>Authors</h3>
|
||||
<dl>
|
||||
<dt>Stefan Urbanek (<a href="mailto:urbanek@host.sk"><code>urbanek@host.sk</code></a>)</dt>
|
||||
<dt>Stefan Urbanek</dt>
|
||||
<dd>
|
||||
</dd>
|
||||
</dl>
|
||||
|
|
|
@ -4,9 +4,6 @@
|
|||
<head>
|
||||
<title>STScriptsManager class documentation</title>
|
||||
<author name="Stefan Urbanek">
|
||||
<email address="urbanek@host.sk">
|
||||
urbanek@host.sk
|
||||
</email>
|
||||
</author>
|
||||
<copy>2002 Stefan Urbanek</copy>
|
||||
</head>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<h1><a name="title$STScriptsManager">STScriptsManager class documentation</a></h1>
|
||||
<h3>Authors</h3>
|
||||
<dl>
|
||||
<dt>Stefan Urbanek (<a href="mailto:urbanek@host.sk"><code>urbanek@host.sk</code></a>)</dt>
|
||||
<dt>Stefan Urbanek</dt>
|
||||
<dd>
|
||||
</dd>
|
||||
</dl>
|
||||
|
|
|
@ -42,7 +42,6 @@
|
|||
<li><a rel="gsdoc" href="STSelector.html#method$STSelector-initWithSelector:">-initWithSelector:</a></li>
|
||||
<li><a rel="gsdoc" href="STSelector.html#method$STSelector-selectorName">-selectorName</a></li>
|
||||
<li><a rel="gsdoc" href="STSelector.html#method$STSelector-selectorValue">-selectorValue</a></li>
|
||||
<li><a rel="gsdoc" href="STSelector.html#method$STSelector-stringValue">-stringValue</a></li>
|
||||
</ul>
|
||||
<hr width="50%" align="left" />
|
||||
<h3><a name="method$STSelector-initWithName:">initWithName: </a></h3>
|
||||
|
|
|
@ -4,9 +4,6 @@
|
|||
<head>
|
||||
<title>STUndefinedObject class documentation</title>
|
||||
<author name="Stefan Urbanek">
|
||||
<email address="urbanek@host.sk">
|
||||
urbanek@host.sk
|
||||
</email>
|
||||
</author>
|
||||
<copy>2002 Free Software Foundation</copy>
|
||||
</head>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<h1><a name="title$STUndefinedObject">STUndefinedObject class documentation</a></h1>
|
||||
<h3>Authors</h3>
|
||||
<dl>
|
||||
<dt>Stefan Urbanek (<a href="mailto:urbanek@host.sk"><code>urbanek@host.sk</code></a>)</dt>
|
||||
<dt>Stefan Urbanek</dt>
|
||||
<dd>
|
||||
</dd>
|
||||
</dl>
|
||||
|
|
|
@ -9,12 +9,12 @@
|
|||
<h1><a name="title$StepTalk">StepTalk Documentation</a></h1>
|
||||
<h3>Authors</h3>
|
||||
<dl>
|
||||
<dt><a href="http://urbanek.host.sk">Stefan Urbanek</a> (<a href="mailto:urbanek@host.sk"><code>urbanek@host.sk</code></a>)</dt>
|
||||
<dt><a href="http://stefan.agentfarms.net">Stefan Urbanek</a> (<a href="mailto:stefan@agentfarms.net"><code>stefan@agentfarms.net</code></a>)</dt>
|
||||
<dd>
|
||||
</dd>
|
||||
</dl>
|
||||
<p><b>Version:</b> 0.7.1</p>
|
||||
<p><b>Date:</b> 2003 Apr 22</p>
|
||||
<p><b>Version:</b> 0.10.0</p>
|
||||
<p><b>Date:</b> 2005 Sep 5</p>
|
||||
|
||||
|
||||
|
||||
|
@ -39,9 +39,7 @@
|
|||
<li><a rel="gsdoc" href="STEnvironment.html#class$STEnvironment">STEnvironment</a></li>
|
||||
<li><a rel="gsdoc" href="STEnvironmentDescription.html#class$STEnvironmentDescription">STEnvironmentDescription</a></li>
|
||||
<li><a rel="gsdoc" href="STFileScript.html#class$STFileScript">STFileScript</a></li>
|
||||
<li><a rel="gsdoc" href="STLanguage.html#class$STLanguage">STLanguage</a></li>
|
||||
<li><a rel="gsdoc" href="STLanguageManager.html#class$STLanguageManager">STLanguageManager</a></li>
|
||||
<li><a rel="gsdoc" href="STMethod.html#class$STMethod">STMethod</a></li>
|
||||
<li><a rel="gsdoc" href="STObjectReference.html#class$STObjectReference">STObjectReference</a></li>
|
||||
<li><a rel="gsdoc" href="STRemoteConversation.html#class$STRemoteConversation">STRemoteConversation</a></li>
|
||||
<li><a rel="gsdoc" href="STScript.html#class$STScript">STScript</a></li>
|
||||
|
@ -53,6 +51,7 @@
|
|||
<b>Protocol</b>
|
||||
<ul>
|
||||
<li><a rel="gsdoc" href="STConversation.html#protocol$(STConversation)"><STConversation></a></li>
|
||||
<li><a rel="gsdoc" href="STRemoteConversation.html#protocol$(STEnvironmentProcess)"><STEnvironmentProcess></a></li>
|
||||
<li><a rel="gsdoc" href="STMethod.html#protocol$(STMethod)"><STMethod></a></li>
|
||||
<li><a rel="gsdoc" href="STScriptObject.html#protocol$(STScriptObject)"><STScriptObject></a></li>
|
||||
<li><a rel="gsdoc" href="STScripting.html#protocol$(STScripting)"><STScripting></a></li>
|
||||
|
|
|
@ -26,9 +26,7 @@
|
|||
STEnvironment = STEnvironment;
|
||||
STEnvironmentDescription = STEnvironmentDescription;
|
||||
STFileScript = STFileScript;
|
||||
STLanguage = STLanguage;
|
||||
STLanguageManager = STLanguageManager;
|
||||
STMethod = STMethod;
|
||||
STObjectReference = STObjectReference;
|
||||
STRemoteConversation = STRemoteConversation;
|
||||
STScript = STScript;
|
||||
|
@ -58,6 +56,12 @@
|
|||
objectDictionary = STContext;
|
||||
parentContext = STContext;
|
||||
};
|
||||
STConversation = {
|
||||
context = STConversation;
|
||||
engine = STConversation;
|
||||
languageName = STConversation;
|
||||
returnValue = STConversation;
|
||||
};
|
||||
STEnvironment = {
|
||||
classes = STEnvironment;
|
||||
description = STEnvironment;
|
||||
|
@ -153,6 +157,9 @@
|
|||
connection = {
|
||||
STRemoteConversation = STRemoteConversation;
|
||||
};
|
||||
context = {
|
||||
STConversation = STConversation;
|
||||
};
|
||||
createsUnknownObjects = {
|
||||
STContext = STContext;
|
||||
};
|
||||
|
@ -160,6 +167,9 @@
|
|||
STEnvironment = STEnvironment;
|
||||
STFileScript = STFileScript;
|
||||
};
|
||||
engine = {
|
||||
STConversation = STConversation;
|
||||
};
|
||||
engineClasses = {
|
||||
STLanguageManager = STLanguageManager;
|
||||
};
|
||||
|
@ -210,6 +220,9 @@
|
|||
languageInfos = {
|
||||
STLanguageManager = STLanguageManager;
|
||||
};
|
||||
languageName = {
|
||||
STConversation = STConversation;
|
||||
};
|
||||
languages = {
|
||||
STLanguageManager = STLanguageManager;
|
||||
};
|
||||
|
@ -250,6 +263,9 @@
|
|||
restriction = {
|
||||
STEnvironmentDescription = STEnvironmentDescription;
|
||||
};
|
||||
returnValue = {
|
||||
STConversation = STConversation;
|
||||
};
|
||||
scriptSearchPaths = {
|
||||
STScriptsManager = STScriptsManager;
|
||||
};
|
||||
|
@ -288,12 +304,6 @@
|
|||
"+allFrameworkNames" = {
|
||||
NSBundle = STBundleInfo;
|
||||
};
|
||||
"+allKnownFileTypes" = {
|
||||
STLanguage = STLanguage;
|
||||
};
|
||||
"+allLanguageNames" = {
|
||||
STLanguage = STLanguage;
|
||||
};
|
||||
"+bundleForFrameworkWithName:" = {
|
||||
NSBundle = STBundleInfo;
|
||||
};
|
||||
|
@ -303,46 +313,28 @@
|
|||
"+className" = {
|
||||
"(STScripting)" = STScripting;
|
||||
};
|
||||
"+conversationWithEnvironment:language:" = {
|
||||
STConversation = STConversation;
|
||||
};
|
||||
"+defaultDescriptionName" = {
|
||||
STEnvironmentDescription = STEnvironmentDescription;
|
||||
};
|
||||
"+defaultLanguageName" = {
|
||||
STLanguage = STLanguage;
|
||||
};
|
||||
"+defaultManager" = {
|
||||
STLanguageManager = STLanguageManager;
|
||||
STScriptsManager = STScriptsManager;
|
||||
};
|
||||
"+defaultScriptingEnvironment" = {
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"+descriptionFromDictionary:" = {
|
||||
STEnvironmentDescription = STEnvironmentDescription;
|
||||
};
|
||||
"+descriptionWithName:" = {
|
||||
STEnvironmentDescription = STEnvironmentDescription;
|
||||
};
|
||||
"+engineForFileType:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"+engineForLanguage:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"+engineForLanguageWithName:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"+environmentWithDefaultDescription" = {
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"+environmentWithDescription:" = {
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"+environmentWithDescriptionName:" = {
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"+infoForBundle:" = {
|
||||
STBundleInfo = STBundleInfo;
|
||||
};
|
||||
|
@ -355,18 +347,6 @@
|
|||
"+isClass" = {
|
||||
"(STScripting)" = STScripting;
|
||||
};
|
||||
"+languageForFileType:" = {
|
||||
STLanguage = STLanguage;
|
||||
};
|
||||
"+languageNameForFileType:" = {
|
||||
STLanguage = STLanguage;
|
||||
};
|
||||
"+languageWithName:" = {
|
||||
STLanguage = STLanguage;
|
||||
};
|
||||
"+languageWithPath:" = {
|
||||
STLanguage = STLanguage;
|
||||
};
|
||||
"+pathForFrameworkWithName:" = {
|
||||
NSBundle = STBundleInfo;
|
||||
};
|
||||
|
@ -375,7 +355,6 @@
|
|||
};
|
||||
"+scriptWithFile:" = {
|
||||
STFileScript = STFileScript;
|
||||
STScript = STScript;
|
||||
};
|
||||
"+scriptWithSource:language:" = {
|
||||
STScript = STScript;
|
||||
|
@ -398,7 +377,6 @@
|
|||
};
|
||||
"-addNamedObjectsFromDictionary:" = {
|
||||
STContext = STContext;
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-allClassNames" = {
|
||||
STBundleInfo = STBundleInfo;
|
||||
|
@ -412,9 +390,6 @@
|
|||
"-bundleForLanguage:" = {
|
||||
STLanguageManager = STLanguageManager;
|
||||
};
|
||||
"-canInterpret:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"-classForScripting" = {
|
||||
"(STScripting)" = STScripting;
|
||||
};
|
||||
|
@ -424,59 +399,45 @@
|
|||
"-classes" = {
|
||||
STEnvironmentDescription = STEnvironmentDescription;
|
||||
};
|
||||
"-close" = {
|
||||
STRemoteConversation = STRemoteConversation;
|
||||
};
|
||||
"-compareByLocalizedName:" = {
|
||||
STFileScript = STFileScript;
|
||||
STScript = STScript;
|
||||
};
|
||||
"-context" = {
|
||||
STConversation = STConversation;
|
||||
};
|
||||
"-createConversation" = {
|
||||
"(STEnvironmentProcess)" = STRemoteConversation;
|
||||
};
|
||||
"-createEngineForLanguage:" = {
|
||||
STLanguageManager = STLanguageManager;
|
||||
};
|
||||
"-createsUnknownObjects" = {
|
||||
STContext = STContext;
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-defaultEnvironment" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"-defaultLanguage" = {
|
||||
STLanguageManager = STLanguageManager;
|
||||
};
|
||||
"-engine" = {
|
||||
STLanguage = STLanguage;
|
||||
};
|
||||
"-engineClassForLanguage:" = {
|
||||
STLanguageManager = STLanguageManager;
|
||||
};
|
||||
"-environment" = {
|
||||
STActor = STActor;
|
||||
STConversation = STConversation;
|
||||
STScriptObject = STScriptObject;
|
||||
};
|
||||
"-executeCode:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"-executeCode:inEnvironment:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"-executeMethod:forReceiver:withArguments:inEnvironment:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"-executeMethod:forScriptObject:" = {
|
||||
"-executeMethod:forReceiver:withArguments:inContext:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"-fileName" = {
|
||||
STFileScript = STFileScript;
|
||||
STScript = STScript;
|
||||
};
|
||||
"-frameworks" = {
|
||||
STEnvironmentDescription = STEnvironmentDescription;
|
||||
};
|
||||
"-fullScriptingEnabled" = {
|
||||
STContext = STContext;
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-getArgumentAsObjectAtIndex:" = {
|
||||
NSInvocation = "NSInvocation+additions";
|
||||
|
@ -490,9 +451,6 @@
|
|||
"-includeFramework:" = {
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-initDefault" = {
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-initFromDictionary:" = {
|
||||
STEnvironmentDescription = STEnvironmentDescription;
|
||||
};
|
||||
|
@ -508,24 +466,17 @@
|
|||
"-initWithDescription:" = {
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-initWithDescriptionName:" = {
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-initWithDomainName:" = {
|
||||
STScriptsManager = STScriptsManager;
|
||||
};
|
||||
"-initWithEnvironment:" = {
|
||||
STActor = STActor;
|
||||
};
|
||||
"-initWithEnvironment:language:" = {
|
||||
STConversation = STConversation;
|
||||
};
|
||||
"-initWithEnvironmentName:host:language:" = {
|
||||
STRemoteConversation = STRemoteConversation;
|
||||
};
|
||||
"-initWithFile:" = {
|
||||
STFileScript = STFileScript;
|
||||
STScript = STScript;
|
||||
};
|
||||
"-initWithIdentifier:target:" = {
|
||||
STObjectReference = STObjectReference;
|
||||
|
@ -537,9 +488,6 @@
|
|||
STEnvironmentDescription = STEnvironmentDescription;
|
||||
STSelector = STSelector;
|
||||
};
|
||||
"-initWithObjectName:pool:" = {
|
||||
STObjectReference = STObjectReference;
|
||||
};
|
||||
"-initWithSelector:" = {
|
||||
STSelector = STSelector;
|
||||
};
|
||||
|
@ -550,9 +498,6 @@
|
|||
"(STScriptObject)" = STScriptObject;
|
||||
STScriptObject = STScriptObject;
|
||||
};
|
||||
"-interpretMethod:forReceiver:withArguments:inContext:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"-interpretScript:" = {
|
||||
"(STConversation)" = STConversation;
|
||||
};
|
||||
|
@ -573,7 +518,6 @@
|
|||
};
|
||||
"-knownObjectNames" = {
|
||||
STContext = STContext;
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-language" = {
|
||||
"(STConversation)" = STConversation;
|
||||
|
@ -582,15 +526,12 @@
|
|||
};
|
||||
"-languageName" = {
|
||||
"(STMethod)" = STMethod;
|
||||
STLanguage = STLanguage;
|
||||
STMethod = STMethod;
|
||||
};
|
||||
"-loadModule:" = {
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-localizedName" = {
|
||||
STFileScript = STFileScript;
|
||||
STScript = STScript;
|
||||
};
|
||||
"-methodDictionary" = {
|
||||
STActor = STActor;
|
||||
|
@ -599,15 +540,8 @@
|
|||
"-methodFromSource:forReceiver:inContext:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"-methodFromSource:forReceiver:inEnvironment:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"-methodFromSource:forScriptObject:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"-methodName" = {
|
||||
"(STMethod)" = STMethod;
|
||||
STMethod = STMethod;
|
||||
};
|
||||
"-methodNames" = {
|
||||
STActor = STActor;
|
||||
|
@ -631,7 +565,6 @@
|
|||
};
|
||||
"-objectDictionary" = {
|
||||
STContext = STContext;
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-objectFinders" = {
|
||||
STEnvironmentDescription = STEnvironmentDescription;
|
||||
|
@ -639,26 +572,21 @@
|
|||
"-objectForVariable:" = {
|
||||
STScriptObject = STScriptObject;
|
||||
};
|
||||
"-objectName" = {
|
||||
STObjectReference = STObjectReference;
|
||||
};
|
||||
"-objectReferenceDictionary" = {
|
||||
STBundleInfo = STBundleInfo;
|
||||
};
|
||||
"-objectReferenceForObjectWithName:" = {
|
||||
STContext = STContext;
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-objectWithName:" = {
|
||||
STContext = STContext;
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-open" = {
|
||||
STRemoteConversation = STRemoteConversation;
|
||||
};
|
||||
"-parentContext" = {
|
||||
STContext = STContext;
|
||||
};
|
||||
"-pool" = {
|
||||
STObjectReference = STObjectReference;
|
||||
};
|
||||
"-publicClassNames" = {
|
||||
STBundleInfo = STBundleInfo;
|
||||
};
|
||||
|
@ -681,7 +609,6 @@
|
|||
};
|
||||
"-removeObjectWithName:" = {
|
||||
STContext = STContext;
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-result" = {
|
||||
"(STConversation)" = STConversation;
|
||||
|
@ -697,11 +624,9 @@
|
|||
};
|
||||
"-scriptDescription" = {
|
||||
STFileScript = STFileScript;
|
||||
STScript = STScript;
|
||||
};
|
||||
"-scriptName" = {
|
||||
STFileScript = STFileScript;
|
||||
STScript = STScript;
|
||||
};
|
||||
"-scriptSearchPaths" = {
|
||||
STScriptsManager = STScriptsManager;
|
||||
|
@ -726,10 +651,6 @@
|
|||
};
|
||||
"-setCreatesUnknownObjects:" = {
|
||||
STContext = STContext;
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-setDefaultEnvironment:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"-setEnvironment:" = {
|
||||
STActor = STActor;
|
||||
|
@ -737,7 +658,6 @@
|
|||
};
|
||||
"-setFullScriptingEnabled:" = {
|
||||
STContext = STContext;
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-setLanguage:" = {
|
||||
"(STConversation)" = STConversation;
|
||||
|
@ -749,20 +669,13 @@
|
|||
};
|
||||
"-setObject:forName:" = {
|
||||
STContext = STContext;
|
||||
STEnvironment = STEnvironment;
|
||||
};
|
||||
"-setObject:forVariable:" = {
|
||||
STScriptObject = STScriptObject;
|
||||
};
|
||||
"-setObjectName:" = {
|
||||
STObjectReference = STObjectReference;
|
||||
};
|
||||
"-setParentContext:" = {
|
||||
STContext = STContext;
|
||||
};
|
||||
"-setPool:" = {
|
||||
STObjectReference = STObjectReference;
|
||||
};
|
||||
"-setScriptSearchPaths:" = {
|
||||
STScriptsManager = STScriptsManager;
|
||||
};
|
||||
|
@ -772,17 +685,10 @@
|
|||
"-setSource:" = {
|
||||
STScript = STScript;
|
||||
};
|
||||
"-setValue:forOption:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
"-source" = {
|
||||
"(STMethod)" = STMethod;
|
||||
STMethod = STMethod;
|
||||
STScript = STScript;
|
||||
};
|
||||
"-stringValue" = {
|
||||
STSelector = STSelector;
|
||||
};
|
||||
"-target" = {
|
||||
STObjectReference = STObjectReference;
|
||||
};
|
||||
|
@ -801,62 +707,8 @@
|
|||
"-validScriptSearchPaths" = {
|
||||
STScriptsManager = STScriptsManager;
|
||||
};
|
||||
"-valueForOption:" = {
|
||||
STEngine = STEngine;
|
||||
};
|
||||
};
|
||||
output = {
|
||||
"Headers/StepTalk/NSInvocation+additions.h" = (
|
||||
"../Documentation/Reference/NSInvocation+additions.gsdoc"
|
||||
);
|
||||
"Headers/StepTalk/NSObject+additions.h" = (
|
||||
"../Documentation/Reference/NSObject+additions.gsdoc"
|
||||
);
|
||||
Headers/StepTalk/STBundleInfo.h = (
|
||||
../Documentation/Reference/STBundleInfo.gsdoc
|
||||
);
|
||||
Headers/StepTalk/STEngine.h = (
|
||||
../Documentation/Reference/STEngine.gsdoc
|
||||
);
|
||||
Headers/StepTalk/STEnvironment.h = (
|
||||
../Documentation/Reference/STEnvironment.gsdoc
|
||||
);
|
||||
Headers/StepTalk/STExterns.h = (
|
||||
../Documentation/Reference/STExterns.gsdoc
|
||||
);
|
||||
Headers/StepTalk/STFunctions.h = (
|
||||
../Documentation/Reference/STFunctions.gsdoc
|
||||
);
|
||||
Headers/StepTalk/STLanguage.h = (
|
||||
../Documentation/Reference/STLanguage.gsdoc
|
||||
);
|
||||
Headers/StepTalk/STMethod.h = (
|
||||
../Documentation/Reference/STMethod.gsdoc
|
||||
);
|
||||
Headers/StepTalk/STObjCRuntime.h = (
|
||||
../Documentation/Reference/STObjCRuntime.gsdoc
|
||||
);
|
||||
Headers/StepTalk/STObjectReference.h = (
|
||||
../Documentation/Reference/STObjectReference.gsdoc
|
||||
);
|
||||
Headers/StepTalk/STScript.h = (
|
||||
../Documentation/Reference/STScript.gsdoc
|
||||
);
|
||||
Headers/StepTalk/STScriptObject.h = (
|
||||
../Documentation/Reference/STScriptObject.gsdoc
|
||||
);
|
||||
Headers/StepTalk/STScripting.h = (
|
||||
../Documentation/Reference/STScripting.gsdoc
|
||||
);
|
||||
Headers/StepTalk/STScriptsManager.h = (
|
||||
../Documentation/Reference/STScriptsManager.gsdoc
|
||||
);
|
||||
Headers/StepTalk/STSelector.h = (
|
||||
../Documentation/Reference/STSelector.gsdoc
|
||||
);
|
||||
Headers/StepTalk/STUndefinedObject.h = (
|
||||
../Documentation/Reference/STUndefinedObject.gsdoc
|
||||
);
|
||||
"NSInvocation+additions.h" = (
|
||||
"../../Documentation/Reference/NSInvocation+additions.gsdoc"
|
||||
);
|
||||
|
@ -893,9 +745,6 @@
|
|||
STFunctions.h = (
|
||||
../../Documentation/Reference/STFunctions.gsdoc
|
||||
);
|
||||
STLanguage.h = (
|
||||
../../Documentation/Reference/STLanguage.gsdoc
|
||||
);
|
||||
STLanguageManager.h = (
|
||||
../../Documentation/Reference/STLanguageManager.gsdoc
|
||||
);
|
||||
|
@ -932,62 +781,12 @@
|
|||
};
|
||||
protocol = {
|
||||
"(STConversation)" = STConversation;
|
||||
"(STEnvironmentProcess)" = STRemoteConversation;
|
||||
"(STMethod)" = STMethod;
|
||||
"(STScriptObject)" = STScriptObject;
|
||||
"(STScripting)" = STScripting;
|
||||
};
|
||||
source = {
|
||||
"Headers/StepTalk/NSInvocation+additions.h" = (
|
||||
"NSInvocation+additions.m"
|
||||
);
|
||||
"Headers/StepTalk/NSObject+additions.h" = (
|
||||
"NSObject+additions.m"
|
||||
);
|
||||
Headers/StepTalk/STBundleInfo.h = (
|
||||
STBundleInfo.m
|
||||
);
|
||||
Headers/StepTalk/STEngine.h = (
|
||||
STEngine.m
|
||||
);
|
||||
Headers/StepTalk/STEnvironment.h = (
|
||||
STEnvironment.m
|
||||
);
|
||||
Headers/StepTalk/STExterns.h = (
|
||||
STExterns.m
|
||||
);
|
||||
Headers/StepTalk/STFunctions.h = (
|
||||
STFunctions.m
|
||||
);
|
||||
Headers/StepTalk/STLanguage.h = (
|
||||
STLanguage.m
|
||||
);
|
||||
Headers/StepTalk/STMethod.h = (
|
||||
STMethod.m
|
||||
);
|
||||
Headers/StepTalk/STObjCRuntime.h = (
|
||||
STObjCRuntime.m
|
||||
);
|
||||
Headers/StepTalk/STObjectReference.h = (
|
||||
STObjectReference.m
|
||||
);
|
||||
Headers/StepTalk/STScript.h = (
|
||||
STScript.m
|
||||
);
|
||||
Headers/StepTalk/STScriptObject.h = (
|
||||
STScriptObject.m
|
||||
);
|
||||
Headers/StepTalk/STScripting.h = (
|
||||
STScripting.m
|
||||
);
|
||||
Headers/StepTalk/STScriptsManager.h = (
|
||||
STScriptsManager.m
|
||||
);
|
||||
Headers/StepTalk/STSelector.h = (
|
||||
STSelector.m
|
||||
);
|
||||
Headers/StepTalk/STUndefinedObject.h = (
|
||||
STUndefinedObject.m
|
||||
);
|
||||
"NSInvocation+additions.h" = (
|
||||
"NSInvocation+additions.m"
|
||||
);
|
||||
|
@ -1024,9 +823,6 @@
|
|||
STFunctions.h = (
|
||||
STFunctions.m
|
||||
);
|
||||
STLanguage.h = (
|
||||
STLanguage.m
|
||||
);
|
||||
STLanguageManager.h = (
|
||||
STLanguageManager.m
|
||||
);
|
||||
|
@ -1070,9 +866,7 @@
|
|||
STEnvironment = STContext;
|
||||
STEnvironmentDescription = NSObject;
|
||||
STFileScript = STScript;
|
||||
STLanguage = NSBundle;
|
||||
STLanguageManager = NSObject;
|
||||
STMethod = NSObject;
|
||||
STObjectReference = NSObject;
|
||||
STRemoteConversation = STConversation;
|
||||
STScript = NSObject;
|
||||
|
@ -1094,7 +888,6 @@
|
|||
STExterns = "STExterns documentation";
|
||||
STFileScript = "STFileScript class documentation";
|
||||
STFunctions = "STFunctions documentation";
|
||||
STLanguage = "STLanguage class documentation";
|
||||
STLanguageManager = "STLanguageManager class documentation";
|
||||
STMethod = "STMethod documentation";
|
||||
STObjCRuntime = "STObjCRuntime documentation";
|
||||
|
@ -1117,6 +910,9 @@
|
|||
"-resultByCopy" = STConversation;
|
||||
"-setLanguage:" = STConversation;
|
||||
};
|
||||
"(STEnvironmentProcess)" = {
|
||||
"-createConversation" = STRemoteConversation;
|
||||
};
|
||||
"(STMethod)" = {
|
||||
"-languageName" = STMethod;
|
||||
"-methodName" = STMethod;
|
||||
|
@ -1189,63 +985,32 @@
|
|||
"-setParentContext:" = STContext;
|
||||
};
|
||||
STConversation = {
|
||||
"+conversationWithEnvironment:language:" = STConversation;
|
||||
"-context" = STConversation;
|
||||
"-environment" = STConversation;
|
||||
"-initWithContext:language:" = STConversation;
|
||||
"-initWithEnvironment:language:" = STConversation;
|
||||
"-language" = STConversation;
|
||||
"-runScriptFromString:" = STConversation;
|
||||
"-setLanguage:" = STConversation;
|
||||
};
|
||||
STEngine = {
|
||||
"+engineForFileType:" = STEngine;
|
||||
"+engineForLanguage:" = STEngine;
|
||||
"+engineForLanguageWithName:" = STEngine;
|
||||
"-canInterpret:" = STEngine;
|
||||
"-defaultEnvironment" = STEngine;
|
||||
"-executeCode:" = STEngine;
|
||||
"-executeCode:inEnvironment:" = STEngine;
|
||||
"-executeMethod:forReceiver:withArguments:inEnvironment:" = STEngine;
|
||||
"-executeMethod:forScriptObject:" = STEngine;
|
||||
"-interpretMethod:forReceiver:withArguments:inContext:" = STEngine;
|
||||
"-executeMethod:forReceiver:withArguments:inContext:" = STEngine;
|
||||
"-interpretScript:inContext:" = STEngine;
|
||||
"-methodFromSource:forReceiver:inContext:" = STEngine;
|
||||
"-methodFromSource:forReceiver:inEnvironment:" = STEngine;
|
||||
"-methodFromSource:forScriptObject:" = STEngine;
|
||||
"-setDefaultEnvironment:" = STEngine;
|
||||
"-setValue:forOption:" = STEngine;
|
||||
"-understandsCode:" = STEngine;
|
||||
"-valueForOption:" = STEngine;
|
||||
};
|
||||
STEnvironment = {
|
||||
"+defaultScriptingEnvironment" = STEnvironment;
|
||||
"+environmentWithDefaultDescription" = STEnvironment;
|
||||
"+environmentWithDescription:" = STEnvironment;
|
||||
"+environmentWithDescriptionName:" = STEnvironment;
|
||||
"+sharedEnvironment" = STEnvironment;
|
||||
"-addClassesWithNames:" = STEnvironment;
|
||||
"-addNamedObjectsFromDictionary:" = STEnvironment;
|
||||
"-createsUnknownObjects" = STEnvironment;
|
||||
"-fullScriptingEnabled" = STEnvironment;
|
||||
"-includeBundle:" = STEnvironment;
|
||||
"-includeFramework:" = STEnvironment;
|
||||
"-initDefault" = STEnvironment;
|
||||
"-initWithDefaultDescription" = STEnvironment;
|
||||
"-initWithDescription:" = STEnvironment;
|
||||
"-initWithDescriptionName:" = STEnvironment;
|
||||
"-knownObjectNames" = STEnvironment;
|
||||
"-loadModule:" = STEnvironment;
|
||||
"-objectDictionary" = STEnvironment;
|
||||
"-objectReferenceForObjectWithName:" = STEnvironment;
|
||||
"-objectWithName:" = STEnvironment;
|
||||
"-registerObjectFinder:name:" = STEnvironment;
|
||||
"-registerObjectFinderNamed:" = STEnvironment;
|
||||
"-removeObjectFinderWithName:" = STEnvironment;
|
||||
"-removeObjectWithName:" = STEnvironment;
|
||||
"-setCreatesUnknownObjects:" = STEnvironment;
|
||||
"-setFullScriptingEnabled:" = STEnvironment;
|
||||
"-setObject:forName:" = STEnvironment;
|
||||
"-translateSelector:forReceiver:" = STEnvironment;
|
||||
};
|
||||
STEnvironmentDescription = {
|
||||
|
@ -1270,17 +1035,6 @@
|
|||
"-scriptDescription" = STFileScript;
|
||||
"-scriptName" = STFileScript;
|
||||
};
|
||||
STLanguage = {
|
||||
"+allKnownFileTypes" = STLanguage;
|
||||
"+allLanguageNames" = STLanguage;
|
||||
"+defaultLanguageName" = STLanguage;
|
||||
"+languageForFileType:" = STLanguage;
|
||||
"+languageNameForFileType:" = STLanguage;
|
||||
"+languageWithName:" = STLanguage;
|
||||
"+languageWithPath:" = STLanguage;
|
||||
"-engine" = STLanguage;
|
||||
"-languageName" = STLanguage;
|
||||
};
|
||||
STLanguageManager = {
|
||||
"+defaultManager" = STLanguageManager;
|
||||
"-availableLanguages" = STLanguageManager;
|
||||
|
@ -1289,37 +1043,22 @@
|
|||
"-defaultLanguage" = STLanguageManager;
|
||||
"-engineClassForLanguage:" = STLanguageManager;
|
||||
};
|
||||
STMethod = {
|
||||
"-languageName" = STMethod;
|
||||
"-methodName" = STMethod;
|
||||
"-source" = STMethod;
|
||||
};
|
||||
STObjectReference = {
|
||||
"-identifier" = STObjectReference;
|
||||
"-initWithIdentifier:target:" = STObjectReference;
|
||||
"-initWithObjectName:pool:" = STObjectReference;
|
||||
"-object" = STObjectReference;
|
||||
"-objectName" = STObjectReference;
|
||||
"-pool" = STObjectReference;
|
||||
"-setObject:" = STObjectReference;
|
||||
"-setObjectName:" = STObjectReference;
|
||||
"-setPool:" = STObjectReference;
|
||||
"-target" = STObjectReference;
|
||||
};
|
||||
STRemoteConversation = {
|
||||
"-close" = STRemoteConversation;
|
||||
"-initWithEnvironmentName:host:language:" = STRemoteConversation;
|
||||
"-open" = STRemoteConversation;
|
||||
};
|
||||
STScript = {
|
||||
"+scriptWithFile:" = STScript;
|
||||
"+scriptWithSource:language:" = STScript;
|
||||
"-compareByLocalizedName:" = STScript;
|
||||
"-fileName" = STScript;
|
||||
"-initWithFile:" = STScript;
|
||||
"-initWithSource:language:" = STScript;
|
||||
"-language" = STScript;
|
||||
"-localizedName" = STScript;
|
||||
"-scriptDescription" = STScript;
|
||||
"-scriptName" = STScript;
|
||||
"-setLanguage:" = STScript;
|
||||
"-setSource:" = STScript;
|
||||
"-source" = STScript;
|
||||
|
@ -1355,7 +1094,6 @@
|
|||
"-initWithSelector:" = STSelector;
|
||||
"-selectorName" = STSelector;
|
||||
"-selectorValue" = STSelector;
|
||||
"-stringValue" = STSelector;
|
||||
};
|
||||
};
|
||||
variable = {
|
||||
|
|
Loading…
Reference in a new issue