New test.
[mono.git] / mcs / class / System / System.CodeDom / CodeCatchClauseCollection.cs
old mode 100755 (executable)
new mode 100644 (file)
index d44dbe2..05865d1
 //
-// System.CodeDOM CodeCatchClauseCollection Class implementation
+// System.CodeDom CodeCatchClauseCollection Class implementation
 //
 // Author:
 //   Miguel de Icaza (miguel@ximian.com)
 //
 // (C) 2001 Ximian, 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
+// "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.
 //
 
-namespace System.CodeDOM {
-
-       using System.Collections;
-       
-       public class CodeCatchClauseCollection : IList, ICollection, IEnumerable {
-
-               ArrayList catchClauses;
-               
+using System.Runtime.InteropServices;
+using System.Collections;
+
+namespace System.CodeDom 
+{
+       [Serializable]
+       [ClassInterface(ClassInterfaceType.AutoDispatch)]
+       [ComVisible(true)]
+       public class CodeCatchClauseCollection
+               : CollectionBase
+       {
                //
                // Constructors
                //
-               public CodeCatchClauseCollection ()
-               {
-                       catchClauses = new ArrayList ();
-               }
-
-               //
-               // Properties
-               //
-               public int Count {
-                       get {
-                               return catchClauses.Count;
-                       }
-               }
-
-               //
-               // Methods
-               //
-               public void Add (CodeCatchClause value)
+               public CodeCatchClauseCollection()
                {
-                       catchClauses.Add (value);
                }
 
-               public void AddRange (CodeCatchClause [] values)
+               public CodeCatchClauseCollection( CodeCatchClause[] value )
                {
-                       foreach (CodeCatchClause ca in values) 
-                               catchClauses.Add (ca);
-
+                       AddRange( value );
                }
 
-               public void Clear ()
+               public CodeCatchClauseCollection( CodeCatchClauseCollection value )
                {
-                       catchClauses.Clear ();
+                       AddRange( value );
                }
 
-               private class Enumerator : IEnumerator {
-                       private CodeCatchClauseCollection collection;
-                       private int currentIndex = -1;
-
-                       internal Enumerator (CodeCatchClauseCollection collection)
-                       {
-                               this.collection = collection;
-                       }
-
-                       public object Current {
-                               get {
-                                       if (currentIndex == collection.Count)
-                                               throw new InvalidOperationException ();
-                                       return collection [currentIndex];
-                               }
-                       }
-
-                       public bool MoveNext ()
-                       {
-                               if (currentIndex > collection.Count)
-                                       throw new InvalidOperationException ();
-                               return ++currentIndex < collection.Count;
+               //
+               // Properties
+               //
+               public CodeCatchClause this[int index] {
+                       get {
+                               return (CodeCatchClause)List[index];
                        }
-
-                       public void Reset ()
-                       {
-                               currentIndex = -1;
+                       set {
+                               List[index] = value;
                        }
                }
-               
-               public IEnumerator GetEnumerator ()
-               {
-                       return new CodeCatchClauseCollection.Enumerator (this);
-               }
 
                //
-               // IList method implementations
+               // Methods
                //
-               public int Add (object value)
+               public int Add (CodeCatchClause value)
                {
-                       return catchClauses.Add (value);
+                       return List.Add (value);
                }
 
-               public bool Contains (Object value)
+               public void AddRange (CodeCatchClause [] value)
                {
-                       return catchClauses.Contains (value);
-               }
+                       if (value == null) {
+                               throw new ArgumentNullException ("value");
+                       }
 
-               public int IndexOf (Object value)
-               {
-                       return catchClauses.IndexOf (value);
+                       for (int i = 0; i < value.Length; i++) {
+                               Add (value[i]);
+                       }
                }
 
-               public void Insert (int index, Object value)
+               public void AddRange (CodeCatchClauseCollection value )
                {
-                       catchClauses [index] = value;
-               }
-
-               public object this[int index] {
-                       get {
-                               return catchClauses [index];
+                       if (value == null) {
+                               throw new ArgumentNullException ("value");
                        }
 
-                       set {
-                               catchClauses [index] = value;
+                       int count = value.Count;
+                       for (int i = 0; i < count; i++) {
+                               Add (value[i]);
                        }
                }
 
-               public void Remove (object value)
+               public bool Contains( CodeCatchClause value )
                {
-                       catchClauses.Remove (value);
+                       return List.Contains( value );
                }
-
-               public void RemoveAt (int index)
+               
+               public void CopyTo( CodeCatchClause[] array, int index )
                {
-                       catchClauses.RemoveAt (index);
+                       List.CopyTo( array, index );
                }
 
-               //
-               // ICollection method implementations
-               //
-               public void CopyTo (Array array, int index)
+               public int IndexOf( CodeCatchClause value )
                {
-                       catchClauses.CopyTo (array, index);
-               }
-
-               public object SyncRoot {
-                       get {
-                               return catchClauses.SyncRoot;
-                       }
+                       return List.IndexOf( value );
                }
 
-               public bool IsReadOnly {
-                       get {
-                               return false;
-                       }
+               public void Insert( int index, CodeCatchClause value )
+               {
+                       List.Insert( index, value );
                }
 
-               public bool IsSynchronized {
-                       get {
-                               return catchClauses.IsSynchronized;
-                       }
+               public void Remove( CodeCatchClause value )
+               {
+                       List.Remove (value);
                }
        }
 }