aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-07-18 22:31:04 +0100
committerJustin Clark-Casey (justincc)2014-07-18 22:31:04 +0100
commita26d1ffc66eb32b73db497367ec3b964b4be0031 (patch)
treee8dccc355ff306a0ff5d7fef0a561579de733556 /OpenSim/Framework
parentAdd ICommands.HasCommand() method so that we can detect whether a command has... (diff)
downloadopensim-SC_OLD-a26d1ffc66eb32b73db497367ec3b964b4be0031.zip
opensim-SC_OLD-a26d1ffc66eb32b73db497367ec3b964b4be0031.tar.gz
opensim-SC_OLD-a26d1ffc66eb32b73db497367ec3b964b4be0031.tar.bz2
opensim-SC_OLD-a26d1ffc66eb32b73db497367ec3b964b4be0031.tar.xz
minor: add method doc to ICommands.HasCommand()
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/ICommandConsole.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/ICommandConsole.cs b/OpenSim/Framework/ICommandConsole.cs
index c6c6d40..3db2765 100644
--- a/OpenSim/Framework/ICommandConsole.cs
+++ b/OpenSim/Framework/ICommandConsole.cs
@@ -67,6 +67,11 @@ namespace OpenSim.Framework
67 string help, string longhelp, string descriptivehelp, 67 string help, string longhelp, string descriptivehelp,
68 CommandDelegate fn); 68 CommandDelegate fn);
69 69
70 /// <summary>
71 /// Has the given command already been registered?
72 /// </summary>
73 /// <returns></returns>
74 /// <param name="command">Command.</param>
70 bool HasCommand(string command); 75 bool HasCommand(string command);
71 76
72 string[] FindNextOption(string[] command, bool term); 77 string[] FindNextOption(string[] command, bool term);