2006-09-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System / System.Text.RegularExpressions / CaptureCollection.cs
index d4504e4aa55a35bf95ac97be344eff3e02681134..76b390704fcae88759ab0226b273507dba3b959a 100644 (file)
@@ -6,9 +6,7 @@
 //     Dick Porter (dick@ximian.com)
 //
 // (C) 2002 Dan Lewis
-// (C) 2004 Novell, Inc.
-//
-
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
@@ -30,7 +28,6 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-using System;
 using System.Collections;
 
 namespace System.Text.RegularExpressions 
@@ -38,103 +35,51 @@ namespace System.Text.RegularExpressions
        [Serializable]
        public class CaptureCollection: ICollection, IEnumerable
        {
-               private ArrayList list;
+               private Capture [] list;
 
                /* No public constructor */
-               internal CaptureCollection () {
-                       list = new ArrayList ();
+               internal CaptureCollection (int n)
+               {
+                       list = new Capture [n];
                }
 
-               public virtual int Count {
-                       get {
-                               return(list.Count);
-                       }
+               public int Count {
+                       get { return list.Length; }
                }
 
                public bool IsReadOnly {
-                       get {
-                               return(true);
-                       }
+                       get { return true; }
                }
 
-               public virtual bool IsSynchronized {
-                       get {
-                               return(false);
-                       }
+               public bool IsSynchronized {
+                       get { return false; }
                }
 
-               public Capture this[int i] {
+               public Capture this [int i] {
                        get {
-                               if (i < 0 ||
-                                   i > Count) {
+                               if (i < 0 || i >= Count)
                                        throw new ArgumentOutOfRangeException ("Index is out of range");
-                               }
-                               
-                               return((Capture)list[i]);
+                               return list [i];
                        }
                }
 
-               public virtual object SyncRoot {
-                       get {
-                               return(list);
-                       }
-               }
-
-               public virtual void CopyTo (Array array, int index) {
-                       foreach (object o in list) {
-                               if (index > array.Length) {
-                                       break;
-                               }
-
-                               array.SetValue (o, index++);
-                       }
+               internal void SetValue (Capture cap, int i)
+               {
+                       list [i] = cap;
                }
 
-               public virtual IEnumerator GetEnumerator () {
-                       return(new Enumerator (list));
+               public object SyncRoot {
+                       get { return list; }
                }
 
-               internal void Add (object o) {
-                       list.Add (o);
+               public void CopyTo (Array array, int index)
+               {
+                       list.CopyTo (array, index);
                }
 
-               internal void Reverse () {
-                       list.Reverse ();
-               }
-
-               private class Enumerator: IEnumerator {
-                       private IList list;
-                       private int ptr;
-
-                       public Enumerator (IList list) {
-                               this.list = list;
-                               Reset ();
-                       }
-
-                       public object Current {
-                               get {
-                                       if (ptr >= list.Count) {
-                                               throw new InvalidOperationException ();
-                                       }
-
-                                       return(list[ptr]);
-                               }
-                       }
-
-                       public bool MoveNext () {
-                               if (ptr > list.Count) {
-                                       throw new InvalidOperationException ();
-                               }
-
-                               return(++ptr < list.Count);
-                       }
-
-                       public void Reset () {
-                               ptr = -1;
-                       }
+               public IEnumerator GetEnumerator ()
+               {
+                       return list.GetEnumerator ();
                }
        }
 }
-
-               
-