* TypeDescriptorTests.cs: Use Assert instead of deriving from
[mono.git] / mcs / class / System / System.Diagnostics / ProcessModuleCollection.cs
old mode 100755 (executable)
new mode 100644 (file)
index c9ebdce..db11dee
@@ -2,56 +2,68 @@
 // System.Diagnostics.ProcessModuleCollection.cs
 //
 // Authors:
-//     Dick Porter (dick@ximian.com)
+//   Dick Porter (dick@ximian.com)
+//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
 //
 // (C) 2002 Ximian, Inc.  http://www.ximian.com
 //
 
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
 using System.Collections;
 
-namespace System.Diagnostics {
-       public class ProcessModuleCollection : ReadOnlyCollectionBase {
-               private ProcessModule[] modules;
+namespace System.Diagnostics 
+{
+       public class ProcessModuleCollection : ReadOnlyCollectionBase 
+       {
                
-               [MonoTODO]
-               protected ProcessModuleCollection() {
+               protected ProcessModuleCollection() 
+               {
                }
 
-               public ProcessModuleCollection(ProcessModule[] processModules) {
-                       modules=processModules;
+               public ProcessModuleCollection(ProcessModule[] processModules) 
+               {
+                       InnerList.AddRange (processModules);
                }
                
                public ProcessModule this[int index] {
                        get {
-                               return(modules[index]);
+                               return (ProcessModule)InnerList[index];
                        }
                }
 
-               public bool Contains(ProcessModule module) {
-                       foreach(ProcessModule test in modules) {
-                               if(module==test) {
-                                       return(true);
-                               }
-                       }
-                       
-                       return(false);
+               public bool Contains(ProcessModule module) 
+               {
+                       return InnerList.Contains (module);
                }
 
-               [MonoTODO]
-               public void CopyTo(ProcessModule[] array, int index) {
+               public void CopyTo(ProcessModule[] array, int index) 
+               {
+                       InnerList.CopyTo (array, index);
                }
 
-               public int IndexOf(ProcessModule module) {
-                       int i;
-
-                       for(i=0; i<modules.Length; i++) {
-                               if(modules[i]==module) {
-                                       return(i);
-                               }
-                       }
-                       
-                       // FIXME!
-                       return(0);
+               public int IndexOf(ProcessModule module) 
+               {
+                       return InnerList.IndexOf (module);
                }
        }
 }