(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Web.Mobile / System.Web.UI.MobileControls / ArrayListCollectionBase.cs
blobd638227685e4a8698d013af25e8fa5355230df33
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining
4 // a copy of this software and associated documentation files (the
5 // "Software"), to deal in the Software without restriction, including
6 // without limitation the rights to use, copy, modify, merge, publish,
7 // distribute, sublicense, and/or sell copies of the Software, and to
8 // permit persons to whom the Software is furnished to do so, subject to
9 // the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be
12 // included in all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 /**
23 * Project : Mono
24 * Namespace : System.Web.UI.MobileControls
25 * Class : ArrayListCollectionBase
26 * Author : Gaurav Vaish
28 * Copyright : 2003 with Gaurav Vaish, and with
29 * Ximian Inc
32 using System.Collections;
34 namespace System.Web.UI.MobileControls
36 public class ArrayListCollectionBase : ICollection, IEnumerable
38 private ArrayList items;
39 internal ArrayListCollectionBase()
43 internal ArrayListCollectionBase(ArrayList items)
45 this.items = items;
48 public int Count
50 get
52 return (items == null ? 0 : items.Count);
56 public bool IsReadOnly
58 get
60 return (items == null ? false : items.IsReadOnly);
64 public bool IsSynchronized
66 get
68 return false;
72 public object SyncRoot
74 get
76 return this;
80 protected ArrayList Items
82 get
84 if(items == null)
85 items = new ArrayList();
86 return items;
88 set
90 items = value;
94 public void CopyTo(Array array, int index)
96 Items.CopyTo(array, index);
99 public IEnumerator GetEnumerator()
101 return Items.GetEnumerator();