aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-12-19 20:07:26 +0000
committerJustin Clarke Casey2008-12-19 20:07:26 +0000
commited97f290c9f55410fc1d6acdf9cbdc5a40b20823 (patch)
tree148c689bf16e3f845a66201c9d3e5f320bd7b614
parentminor: remove mono compiler warning (diff)
downloadopensim-SC_OLD-ed97f290c9f55410fc1d6acdf9cbdc5a40b20823.zip
opensim-SC_OLD-ed97f290c9f55410fc1d6acdf9cbdc5a40b20823.tar.gz
opensim-SC_OLD-ed97f290c9f55410fc1d6acdf9cbdc5a40b20823.tar.bz2
opensim-SC_OLD-ed97f290c9f55410fc1d6acdf9cbdc5a40b20823.tar.xz
* minor: Just some method commentary before turning to another subject
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs12
1 files changed, 10 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index 70cd45e..dededd4 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -122,12 +122,20 @@ namespace OpenSim.Region.Environment.Scenes
122 122
123 protected BaseHttpServer m_httpListener; 123 protected BaseHttpServer m_httpListener;
124 124
125 protected Dictionary<string, IRegionModule> m_modules = new Dictionary<string, IRegionModule>(); 125 /// <value>
126 /// All the region modules attached to this scene.
127 /// </value>
126 public Dictionary<string, IRegionModule> Modules 128 public Dictionary<string, IRegionModule> Modules
127 { 129 {
128 get { return m_modules; } 130 get { return m_modules; }
129 } 131 }
132 protected Dictionary<string, IRegionModule> m_modules = new Dictionary<string, IRegionModule>();
133
134 /// <value>
135 /// The module interfaces available from this scene.
136 /// </value>
130 protected Dictionary<Type, List<object> > ModuleInterfaces = new Dictionary<Type, List<object> >(); 137 protected Dictionary<Type, List<object> > ModuleInterfaces = new Dictionary<Type, List<object> >();
138
131 protected Dictionary<string, object> ModuleAPIMethods = new Dictionary<string, object>(); 139 protected Dictionary<string, object> ModuleAPIMethods = new Dictionary<string, object>();
132 protected Dictionary<string, ICommander> m_moduleCommanders = new Dictionary<string, ICommander>(); 140 protected Dictionary<string, ICommander> m_moduleCommanders = new Dictionary<string, ICommander>();
133 141
@@ -3129,7 +3137,7 @@ namespace OpenSim.Region.Environment.Scenes
3129 #region Module Methods 3137 #region Module Methods
3130 3138
3131 /// <summary> 3139 /// <summary>
3132 /// 3140 /// Add a module to this scene.
3133 /// </summary> 3141 /// </summary>
3134 /// <param name="name"></param> 3142 /// <param name="name"></param>
3135 /// <param name="module"></param> 3143 /// <param name="module"></param>