aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Interfaces/ICommand.cs32
-rw-r--r--OpenSim/Region/Environment/Interfaces/ICommandableModule.cs32
-rw-r--r--OpenSim/Region/Environment/Interfaces/ICommander.cs28
3 files changed, 46 insertions, 46 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ICommand.cs b/OpenSim/Region/Environment/Interfaces/ICommand.cs
index bccd8d3..396136b 100644
--- a/OpenSim/Region/Environment/Interfaces/ICommand.cs
+++ b/OpenSim/Region/Environment/Interfaces/ICommand.cs
@@ -1,16 +1,16 @@
1using System; 1using System;
2 2
3using OpenSim.Region.Environment.Modules.ModuleFramework; 3using OpenSim.Region.Environment.Modules.ModuleFramework;
4 4
5namespace OpenSim.Region.Environment.Interfaces 5namespace OpenSim.Region.Environment.Interfaces
6{ 6{
7 public interface ICommand 7 public interface ICommand
8 { 8 {
9 void AddArgument(string name, string helptext, string type); 9 void AddArgument(string name, string helptext, string type);
10 System.Collections.Generic.Dictionary<string, string> Arguments { get; } 10 System.Collections.Generic.Dictionary<string, string> Arguments { get; }
11 string Help { get; } 11 string Help { get; }
12 string Name { get; } 12 string Name { get; }
13 void Run(object[] args); 13 void Run(object[] args);
14 void ShowConsoleHelp(); 14 void ShowConsoleHelp();
15 } 15 }
16} 16}
diff --git a/OpenSim/Region/Environment/Interfaces/ICommandableModule.cs b/OpenSim/Region/Environment/Interfaces/ICommandableModule.cs
index 31ef49b..e1f7ed6 100644
--- a/OpenSim/Region/Environment/Interfaces/ICommandableModule.cs
+++ b/OpenSim/Region/Environment/Interfaces/ICommandableModule.cs
@@ -1,16 +1,16 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Text; 3using System.Text;
4 4
5using OpenSim.Region.Environment.Modules.ModuleFramework; 5using OpenSim.Region.Environment.Modules.ModuleFramework;
6 6
7namespace OpenSim.Region.Environment.Interfaces 7namespace OpenSim.Region.Environment.Interfaces
8{ 8{
9 public interface ICommandableModule 9 public interface ICommandableModule
10 { 10 {
11 ICommander CommandInterface 11 ICommander CommandInterface
12 { 12 {
13 get; 13 get;
14 } 14 }
15 } 15 }
16} 16}
diff --git a/OpenSim/Region/Environment/Interfaces/ICommander.cs b/OpenSim/Region/Environment/Interfaces/ICommander.cs
index 93a9956..316a813 100644
--- a/OpenSim/Region/Environment/Interfaces/ICommander.cs
+++ b/OpenSim/Region/Environment/Interfaces/ICommander.cs
@@ -1,14 +1,14 @@
1using System; 1using System;
2 2
3using OpenSim.Region.Environment.Modules.ModuleFramework; 3using OpenSim.Region.Environment.Modules.ModuleFramework;
4 4
5namespace OpenSim.Region.Environment.Interfaces 5namespace OpenSim.Region.Environment.Interfaces
6{ 6{
7 public interface ICommander 7 public interface ICommander
8 { 8 {
9 void ProcessConsoleCommand(string function, string[] args); 9 void ProcessConsoleCommand(string function, string[] args);
10 void RegisterCommand(string commandName, ICommand command); 10 void RegisterCommand(string commandName, ICommand command);
11 void Run(string function, object[] args); 11 void Run(string function, object[] args);
12 string GenerateRuntimeAPI(); 12 string GenerateRuntimeAPI();
13 } 13 }
14} 14}