diff options
author | Justin Clark-Casey (justincc) | 2014-07-18 22:31:04 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-07-18 22:31:04 +0100 |
commit | a26d1ffc66eb32b73db497367ec3b964b4be0031 (patch) | |
tree | e8dccc355ff306a0ff5d7fef0a561579de733556 /OpenSim | |
parent | Add ICommands.HasCommand() method so that we can detect whether a command has... (diff) | |
download | opensim-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 '')
-rw-r--r-- | OpenSim/Framework/ICommandConsole.cs | 5 |
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); |