aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces
diff options
context:
space:
mode:
authorSignpostMarv2012-08-31 13:50:46 +0100
committerMelanie2012-08-31 14:32:33 +0100
commit794c5f5a6d464357101d3da649815251abdc9e10 (patch)
tree0f353ec3757bf77beacb0f54e66580860a229aef /OpenSim/Region/Framework/Interfaces
parentmoving assignment to new line to make next commit easier to read in diffs (diff)
downloadopensim-SC_OLD-794c5f5a6d464357101d3da649815251abdc9e10.zip
opensim-SC_OLD-794c5f5a6d464357101d3da649815251abdc9e10.tar.gz
opensim-SC_OLD-794c5f5a6d464357101d3da649815251abdc9e10.tar.bz2
opensim-SC_OLD-794c5f5a6d464357101d3da649815251abdc9e10.tar.xz
adding support for static method script invocations
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs11
1 files changed, 9 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs b/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs
index ff8213c..dae7c00 100644
--- a/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs
+++ b/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs
@@ -54,9 +54,9 @@ namespace OpenSim.Region.Framework.Interfaces
54 void RegisterScriptInvocation(object target, string method); 54 void RegisterScriptInvocation(object target, string method);
55 55
56 /// <summary> 56 /// <summary>
57 /// Register an instance method as a script call by method info 57 /// Register a static or instance method as a script call by method info
58 /// </summary> 58 /// </summary>
59 /// <param name="target"></param> 59 /// <param name="target">If target is a Type object, will assume method is static.</param>
60 /// <param name="method"></param> 60 /// <param name="method"></param>
61 void RegisterScriptInvocation(object target, MethodInfo method); 61 void RegisterScriptInvocation(object target, MethodInfo method);
62 62
@@ -68,6 +68,13 @@ namespace OpenSim.Region.Framework.Interfaces
68 void RegisterScriptInvocation(object target, string[] methods); 68 void RegisterScriptInvocation(object target, string[] methods);
69 69
70 /// <summary> 70 /// <summary>
71 /// Register one or more static methods as script calls by method name
72 /// </summary>
73 /// <param name="target"></param>
74 /// <param name="methods"></param>
75 void RegisterScriptInvocation(Type target, string[] methods);
76
77 /// <summary>
71 /// Returns an array of all registered script calls 78 /// Returns an array of all registered script calls
72 /// </summary> 79 /// </summary>
73 /// <returns></returns> 80 /// <returns></returns>