Author: lluis
Date: 2008-02-19 04:18:59 -0500 (Tue, 19 Feb 2008)
New Revision: 96122
Modified:
trunk/monodevelop/main/src/core/MonoDevelop.Projects/ChangeLog
trunk/monodevelop/main/src/core/MonoDevelop.Projects/MonoDevelop.Projects/ProjectFileCollection.cs
trunk/monodevelop/main/src/core/MonoDevelop.Projects/MonoDevelop.Projects/ProjectFileEventArgs.cs
trunk/monodevelop/main/src/core/MonoDevelop.Projects/MonoDevelop.Projects/ProjectReferenceCollection.cs
Log:
* MonoDevelop.Projects/ProjectFileEventArgs.cs: Fix license header.
* MonoDevelop.Projects/ProjectFileCollection.cs,
MonoDevelop.Projects/ProjectReferenceCollection.cs: Reimplemented
collections using generic classes.
Modified: trunk/monodevelop/main/src/core/MonoDevelop.Projects/ChangeLog
===================================================================
--- trunk/monodevelop/main/src/core/MonoDevelop.Projects/ChangeLog
2008-02-19 08:27:49 UTC (rev 96121)
+++ trunk/monodevelop/main/src/core/MonoDevelop.Projects/ChangeLog
2008-02-19 09:18:59 UTC (rev 96122)
@@ -1,3 +1,10 @@
+2008-02-19 Lluis Sanchez Gual <[EMAIL PROTECTED]>
+
+ * MonoDevelop.Projects/ProjectFileEventArgs.cs: Fix license header.
+ * MonoDevelop.Projects/ProjectFileCollection.cs,
+ MonoDevelop.Projects/ProjectReferenceCollection.cs: Reimplemented
+ collections using generic classes.
+
2008-02-18 Lluis Sanchez Gual <[EMAIL PROTECTED]>
* MonoDevelop.Projects/ProjectReference.cs: Added property for getting
the
Modified:
trunk/monodevelop/main/src/core/MonoDevelop.Projects/MonoDevelop.Projects/ProjectFileCollection.cs
===================================================================
---
trunk/monodevelop/main/src/core/MonoDevelop.Projects/MonoDevelop.Projects/ProjectFileCollection.cs
2008-02-19 08:27:49 UTC (rev 96121)
+++
trunk/monodevelop/main/src/core/MonoDevelop.Projects/MonoDevelop.Projects/ProjectFileCollection.cs
2008-02-19 09:18:59 UTC (rev 96122)
@@ -1,45 +1,43 @@
-// ProjectFileCollection.cs
+// ProjectFileCollection.cs
//
-// This file was derived from a file from #Develop.
+// Author:
+// Lluis Sanchez Gual <[EMAIL PROTECTED]>
//
-// Copyright (C) 2001-2007 Mike Krüger <[EMAIL PROTECTED]>
-//
-// This program is free software; you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation; either version 2 of the License, or
-// (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Copyright (c) 2008 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.
+//
+//
+
using System;
-using System.Collections;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
using System.IO;
using MonoDevelop.Core;
namespace MonoDevelop.Projects
{
- /// <summary>
- /// <para>
- /// A collection that stores <see cref='.ProjectFile'/> objects.
- /// </para>
- /// </summary>
- /// <seealso cref='.ProjectFileCollection'/>
[Serializable()]
- public class ProjectFileCollection : CollectionBase {
+ public class ProjectFileCollection : Collection<ProjectFile> {
Project project;
- /// <summary>
- /// <para>
- /// Initializes a new instance of <see
cref='.ProjectFileCollection'/>.
- /// </para>
- /// </summary>
public ProjectFileCollection ()
{
}
@@ -64,215 +62,49 @@
public ProjectFile[] GetFilesInPath (string path)
{
path = path + Path.DirectorySeparatorChar;
- ArrayList files = new ArrayList ();
- foreach (ProjectFile file in List) {
+ List<ProjectFile> list = new List<ProjectFile> ();
+ foreach (ProjectFile file in Items) {
if ((file.Name +
Path.DirectorySeparatorChar).StartsWith (path))
- files.Add (file);
+ list.Add (file);
}
- return (ProjectFile[]) files.ToArray
(typeof(ProjectFile));
+ return list.ToArray ();
}
- /// <summary>
- /// <para>Represents the entry at the specified index of the
<see cref='.ProjectFile'/>.</para>
- /// </summary>
- /// <param name='index'><para>The zero-based index of the entry
to locate in the collection.</para></param>
- /// <value>
- /// <para> The entry at the specified index of the
collection.</para>
- /// </value>
- /// <exception
cref='System.ArgumentOutOfRangeException'><paramref name='index'/> is outside
the valid range of indexes for the collection.</exception>
- public ProjectFile this[int index] {
- get {
- return ((ProjectFile)(List[index]));
- }
- }
-
- /// <summary>
- /// <para>Adds a <see cref='.ProjectFile'/> with the
specified value to the
- /// <see cref='.ProjectFileCollection'/> .</para>
- /// </summary>
- /// <param name='value'>The <see cref='.ProjectFile'/> to
add.</param>
- /// <returns>
- /// <para>The index at which the new element was
inserted.</para>
- /// </returns>
- /// <seealso cref='.ProjectFileCollection.AddRange'/>
- public int Add(ProjectFile value) {
- int i = List.Add(value);
+ protected override void InsertItem (int index, ProjectFile
value)
+ {
+ base.InsertItem (index, value);
if (project != null) {
if (value.Project != null)
throw new InvalidOperationException
("ProjectFile already belongs to a project");
value.SetProject (project);
project.NotifyFileAddedToProject (value);
}
- return i;
}
- /// <summary>
- /// <para>Copies the elements of an array to the end of the
<see cref='.ProjectFileCollection'/>.</para>
- /// </summary>
- /// <param name='value'>
- /// An array of type <see cref='.ProjectFile'/> containing
the objects to add to the collection.
- /// </param>
- /// <returns>
- /// <para>None.</para>
- /// </returns>
- /// <seealso cref='.ProjectFileCollection.Add'/>
- public void AddRange(ProjectFile[] value) {
- for (int i = 0; (i < value.Length); i = (i + 1)) {
- this.Add(value[i]);
- }
+ public void AddRange (IEnumerable<ProjectFile> files)
+ {
+ foreach (ProjectFile pf in files)
+ Add (pf);
}
- /// <summary>
- /// <para>
- /// Adds the contents of another <see
cref='.ProjectFileCollection'/> to the end of the collection.
- /// </para>
- /// </summary>
- /// <param name='value'>
- /// A <see cref='.ProjectFileCollection'/> containing the
objects to add to the collection.
- /// </param>
- /// <returns>
- /// <para>None.</para>
- /// </returns>
- /// <seealso cref='.ProjectFileCollection.Add'/>
- public void AddRange(ProjectFileCollection value) {
- for (int i = 0; (i < value.Count); i = (i + 1)) {
- this.Add(value[i]);
- }
- }
-
- /// <summary>
- /// <para>Gets a value indicating whether the
- /// <see cref='.ProjectFileCollection'/> contains the
specified <see cref='.ProjectFile'/>.</para>
- /// </summary>
- /// <param name='value'>The <see cref='.ProjectFile'/> to
locate.</param>
- /// <returns>
- /// <para><see langword='true'/> if the <see
cref='.ProjectFile'/> is contained in the collection;
- /// otherwise, <see langword='false'/>.</para>
- /// </returns>
- /// <seealso cref='.ProjectFileCollection.IndexOf'/>
- public bool Contains(ProjectFile value) {
- return List.Contains(value);
- }
-
- /// <summary>
- /// <para>Copies the <see cref='.ProjectFileCollection'/>
values to a one-dimensional <see cref='System.Array'/> instance at the
- /// specified index.</para>
- /// </summary>
- /// <param name='array'><para>The one-dimensional <see
cref='System.Array'/> that is the destination of the values copied from <see
cref='.ProjectFileCollection'/> .</para></param>
- /// <param name='index'>The index in <paramref name='array'/>
where copying begins.</param>
- /// <returns>
- /// <para>None.</para>
- /// </returns>
- /// <exception cref='System.ArgumentException'><para><paramref
name='array'/> is multidimensional.</para> <para>-or-</para> <para>The number
of elements in the <see cref='.ProjectFileCollection'/> is greater than the
available space between <paramref name='arrayIndex'/> and the end of <paramref
name='array'/>.</para></exception>
- /// <exception cref='System.ArgumentNullException'><paramref
name='array'/> is <see langword='null'/>. </exception>
- /// <exception
cref='System.ArgumentOutOfRangeException'><paramref name='arrayIndex'/> is less
than <paramref name='array'/>'s lowbound. </exception>
- /// <seealso cref='System.Array'/>
- public void CopyTo(ProjectFile[] array, int index) {
- List.CopyTo(array, index);
- }
-
- /// <summary>
- /// <para>Returns the index of a <see cref='.ProjectFile'/>
in
- /// the <see cref='.ProjectFileCollection'/> .</para>
- /// </summary>
- /// <param name='value'>The <see cref='.ProjectFile'/> to
locate.</param>
- /// <returns>
- /// <para>The index of the <see cref='.ProjectFile'/> of
<paramref name='value'/> in the
- /// <see cref='.ProjectFileCollection'/>, if found; otherwise,
-1.</para>
- /// </returns>
- /// <seealso cref='.ProjectFileCollection.Contains'/>
- public int IndexOf(ProjectFile value) {
- return List.IndexOf(value);
- }
-
- /// <summary>
- /// <para>Inserts a <see cref='.ProjectFile'/> into the <see
cref='.ProjectFileCollection'/> at the specified index.</para>
- /// </summary>
- /// <param name='index'>The zero-based index where <paramref
name='value'/> should be inserted.</param>
- /// <param name=' value'>The <see cref='.ProjectFile'/> to
insert.</param>
- /// <returns><para>None.</para></returns>
- /// <seealso cref='.ProjectFileCollection.Add'/>
- public void Insert(int index, ProjectFile value) {
- List.Insert(index, value);
+ protected override void RemoveItem (int index)
+ {
+ ProjectFile file = this [index];
+ base.RemoveItem (index);
if (project != null) {
- if (value.Project != null)
- throw new InvalidOperationException
("ProjectFile already belongs to a project");
- value.SetProject (project);
- project.NotifyFileAddedToProject (value);
+ file.SetProject (null);
+ project.NotifyFileRemovedFromProject (file);
}
}
- /// <summary>
- /// <para>Returns an enumerator that can iterate through
- /// the <see cref='.ProjectFileCollection'/> .</para>
- /// </summary>
- /// <returns><para>None.</para></returns>
- /// <seealso cref='System.Collections.IEnumerator'/>
- public new ProjectFileEnumerator GetEnumerator() {
- return new ProjectFileEnumerator(this);
- }
-
- /// <summary>
- /// <para> Removes a specific <see cref='.ProjectFile'/>
from the
- /// <see cref='.ProjectFileCollection'/> .</para>
- /// </summary>
- /// <param name='value'>The <see cref='.ProjectFile'/> to
remove from the <see cref='.ProjectFileCollection'/> .</param>
- /// <returns><para>None.</para></returns>
- /// <exception cref='System.ArgumentException'><paramref
name='value'/> is not found in the Collection. </exception>
- public void Remove(ProjectFile value) {
- List.Remove (value);
- if (project != null) {
- value.SetProject (null);
- project.NotifyFileRemovedFromProject (value);
- }
- }
-
public void Remove (string fileName)
{
- ProjectFile f = GetFile (fileName);
- if (f != null)
- Remove (f);
- }
-
- public class ProjectFileEnumerator : object, IEnumerator {
-
- private IEnumerator baseEnumerator;
-
- private IEnumerable temp;
-
- public ProjectFileEnumerator(ProjectFileCollection
mappings) {
- this.temp = ((IEnumerable)(mappings));
- this.baseEnumerator = temp.GetEnumerator();
+ fileName = FileService.GetFullPath (fileName);
+ for (int n=0; n<Count; n++) {
+ if (Items [n].Name == fileName)
+ RemoveAt (n);
}
-
- public ProjectFile Current {
- get {
- return
((ProjectFile)(baseEnumerator.Current));
- }
- }
-
- object IEnumerator.Current {
- get {
- return baseEnumerator.Current;
- }
- }
-
- public bool MoveNext() {
- return baseEnumerator.MoveNext();
- }
-
- bool IEnumerator.MoveNext() {
- return baseEnumerator.MoveNext();
- }
-
- public void Reset() {
- baseEnumerator.Reset();
- }
-
- void IEnumerator.Reset() {
- baseEnumerator.Reset();
- }
}
}
}
Modified:
trunk/monodevelop/main/src/core/MonoDevelop.Projects/MonoDevelop.Projects/ProjectFileEventArgs.cs
===================================================================
---
trunk/monodevelop/main/src/core/MonoDevelop.Projects/MonoDevelop.Projects/ProjectFileEventArgs.cs
2008-02-19 08:27:49 UTC (rev 96121)
+++
trunk/monodevelop/main/src/core/MonoDevelop.Projects/MonoDevelop.Projects/ProjectFileEventArgs.cs
2008-02-19 09:18:59 UTC (rev 96122)
@@ -1,9 +1,29 @@
-// <file>
-// <copyright see="prj:///doc/copyright.txt"/>
-// <license see="prj:///doc/license.txt"/>
-// <owner name="Lluis Sanchez Gual" email="[EMAIL PROTECTED]"/>
-// <version value="$version"/>
-// </file>
+// ProjectFileEventArgs.cs
+//
+// Author:
+// Lluis Sanchez Gual <[EMAIL PROTECTED]>
+//
+// 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.
+//
+//
using System;
using MonoDevelop.Projects;
Modified:
trunk/monodevelop/main/src/core/MonoDevelop.Projects/MonoDevelop.Projects/ProjectReferenceCollection.cs
===================================================================
---
trunk/monodevelop/main/src/core/MonoDevelop.Projects/MonoDevelop.Projects/ProjectReferenceCollection.cs
2008-02-19 08:27:49 UTC (rev 96121)
+++
trunk/monodevelop/main/src/core/MonoDevelop.Projects/MonoDevelop.Projects/ProjectReferenceCollection.cs
2008-02-19 09:18:59 UTC (rev 96122)
@@ -1,44 +1,44 @@
-// ProjectReferenceCollection.cs
+// ProjectReferenceCollection.cs
//
-// This file was derived from a file from #Develop.
+// Author:
+// Lluis Sanchez Gual <[EMAIL PROTECTED]>
//
-// Copyright (C) 2001-2007 Mike Krüger <[EMAIL PROTECTED]>
-//
-// This program is free software; you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation; either version 2 of the License, or
-// (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Copyright (c) 2008 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.
+//
+//
+
+
using System;
-using System.Collections;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
namespace MonoDevelop.Projects
{
- /// <summary>
- /// <para>
- /// A collection that stores <see cref='.ProjectReference'/>
objects.
- /// </para>
- /// </summary>
- /// <seealso cref='.ProjectReferenceCollection'/>
[Serializable()]
- public class ProjectReferenceCollection : CollectionBase {
-
+ public class ProjectReferenceCollection : Collection<ProjectReference>
+ {
Project project;
- /// <summary>
- /// <para>
- /// Initializes a new instance of <see
cref='.ProjectReferenceCollection'/>.
- /// </para>
- /// </summary>
- public ProjectReferenceCollection() {
+ public ProjectReferenceCollection()
+ {
}
internal void SetProject (Project project)
@@ -46,153 +46,17 @@
this.project = project;
}
- /// <summary>
- /// <para>Represents the entry at the specified index of the
<see cref='.ProjectReference'/>.</para>
- /// </summary>
- /// <param name='index'><para>The zero-based index of the entry
to locate in the collection.</para></param>
- /// <value>
- /// <para> The entry at the specified index of the
collection.</para>
- /// </value>
- /// <exception
cref='System.ArgumentOutOfRangeException'><paramref name='index'/> is outside
the valid range of indexes for the collection.</exception>
- public ProjectReference this[int index] {
- get {
- return ((ProjectReference)(List[index]));
- }
- set {
- List[index] = value;
- }
+ public void AddRange (IEnumerable<ProjectReference> references)
+ {
+ foreach (ProjectReference pr in references)
+ Add (pr);
}
- /// <summary>
- /// <para>Adds a <see cref='.ProjectReference'/> with the
specified value to the
- /// <see cref='.ProjectReferenceCollection'/> .</para>
- /// </summary>
- /// <param name='value'>The <see cref='.ProjectReference'/> to
add.</param>
- /// <returns>
- /// <para>The index at which the new element was
inserted.</para>
- /// </returns>
- /// <seealso cref='.ProjectReferenceCollection.AddRange'/>
- public int Add(ProjectReference value) {
- return List.Add(value);
- }
-
- /// <summary>
- /// <para>Copies the elements of an array to the end of the
<see cref='.ProjectReferenceCollection'/>.</para>
- /// </summary>
- /// <param name='value'>
- /// An array of type <see cref='.ProjectReference'/>
containing the objects to add to the collection.
- /// </param>
- /// <returns>
- /// <para>None.</para>
- /// </returns>
- /// <seealso cref='.ProjectReferenceCollection.Add'/>
- public void AddRange(ProjectReference[] value) {
- for (int i = 0; (i < value.Length); i = (i + 1)) {
- this.Add(value[i]);
- }
- }
-
- /// <summary>
- /// <para>
- /// Adds the contents of another <see
cref='.ProjectReferenceCollection'/> to the end of the collection.
- /// </para>
- /// </summary>
- /// <param name='value'>
- /// A <see cref='.ProjectReferenceCollection'/> containing
the objects to add to the collection.
- /// </param>
- /// <returns>
- /// <para>None.</para>
- /// </returns>
- /// <seealso cref='.ProjectReferenceCollection.Add'/>
- public void AddRange(ProjectReferenceCollection value) {
- for (int i = 0; (i < value.Count); i = (i + 1)) {
- this.Add(value[i]);
- }
- }
-
- /// <summary>
- /// <para>Gets a value indicating whether the
- /// <see cref='.ProjectReferenceCollection'/> contains the
specified <see cref='.ProjectReference'/>.</para>
- /// </summary>
- /// <param name='value'>The <see cref='.ProjectReference'/> to
locate.</param>
- /// <returns>
- /// <para><see langword='true'/> if the <see
cref='.ProjectReference'/> is contained in the collection;
- /// otherwise, <see langword='false'/>.</para>
- /// </returns>
- /// <seealso cref='.ProjectReferenceCollection.IndexOf'/>
- public bool Contains(ProjectReference value) {
- return List.Contains(value);
- }
-
- /// <summary>
- /// <para>Copies the <see cref='.ProjectReferenceCollection'/>
values to a one-dimensional <see cref='System.Array'/> instance at the
- /// specified index.</para>
- /// </summary>
- /// <param name='array'><para>The one-dimensional <see
cref='System.Array'/> that is the destination of the values copied from <see
cref='.ProjectReferenceCollection'/> .</para></param>
- /// <param name='index'>The index in <paramref name='array'/>
where copying begins.</param>
- /// <returns>
- /// <para>None.</para>
- /// </returns>
- /// <exception cref='System.ArgumentException'><para><paramref
name='array'/> is multidimensional.</para> <para>-or-</para> <para>The number
of elements in the <see cref='.ProjectReferenceCollection'/> is greater than
the available space between <paramref name='arrayIndex'/> and the end of
<paramref name='array'/>.</para></exception>
- /// <exception cref='System.ArgumentNullException'><paramref
name='array'/> is <see langword='null'/>. </exception>
- /// <exception
cref='System.ArgumentOutOfRangeException'><paramref name='arrayIndex'/> is less
than <paramref name='array'/>'s lowbound. </exception>
- /// <seealso cref='System.Array'/>
- public void CopyTo(ProjectReference[] array, int index) {
- List.CopyTo(array, index);
- }
-
- /// <summary>
- /// <para>Returns the index of a <see
cref='.ProjectReference'/> in
- /// the <see cref='.ProjectReferenceCollection'/> .</para>
- /// </summary>
- /// <param name='value'>The <see cref='.ProjectReference'/> to
locate.</param>
- /// <returns>
- /// <para>The index of the <see cref='.ProjectReference'/> of
<paramref name='value'/> in the
- /// <see cref='.ProjectReferenceCollection'/>, if found;
otherwise, -1.</para>
- /// </returns>
- /// <seealso cref='.ProjectReferenceCollection.Contains'/>
- public int IndexOf(ProjectReference value) {
- return List.IndexOf(value);
- }
-
- /// <summary>
- /// <para>Inserts a <see cref='.ProjectReference'/> into the
<see cref='.ProjectReferenceCollection'/> at the specified index.</para>
- /// </summary>
- /// <param name='index'>The zero-based index where <paramref
name='value'/> should be inserted.</param>
- /// <param name=' value'>The <see cref='.ProjectReference'/> to
insert.</param>
- /// <returns><para>None.</para></returns>
- /// <seealso cref='.ProjectReferenceCollection.Add'/>
- public void Insert(int index, ProjectReference value) {
- List.Insert(index, value);
- }
-
- /// <summary>
- /// <para>Returns an enumerator that can iterate through
- /// the <see cref='.ProjectReferenceCollection'/> .</para>
- /// </summary>
- /// <returns><para>None.</para></returns>
- /// <seealso cref='System.Collections.IEnumerator'/>
- public new ProjectReferenceEnumerator GetEnumerator() {
- return new ProjectReferenceEnumerator(this);
- }
-
- /// <summary>
- /// <para> Removes a specific <see
cref='.ProjectReference'/> from the
- /// <see cref='.ProjectReferenceCollection'/> .</para>
- /// </summary>
- /// <param name='value'>The <see cref='.ProjectReference'/> to
remove from the <see cref='.ProjectReferenceCollection'/> .</param>
- /// <returns><para>None.</para></returns>
- /// <exception cref='System.ArgumentException'><paramref
name='value'/> is not found in the Collection. </exception>
- public void Remove (ProjectReference value) {
- List.Remove(value);
- }
-
-
- protected override void OnClear()
+ protected override void ClearItems()
{
if (project != null) {
- ArrayList list = (ArrayList) InnerList.Clone ();
- InnerList.Clear ();
+ List<ProjectReference> list = new
List<ProjectReference> (Items);
+ base.ClearItems ();
foreach (ProjectReference pref in list) {
pref.SetOwnerProject (null);
project.NotifyReferenceRemovedFromProject (pref);
@@ -200,76 +64,35 @@
}
}
- protected override void OnInsertComplete(int index, object
value)
+ protected override void InsertItem (int index, ProjectReference
value)
{
+ base.InsertItem (index, value);
if (project != null) {
- ((ProjectReference) value).SetOwnerProject
(project);
- project.NotifyReferenceAddedToProject
((ProjectReference)value);
+ value.SetOwnerProject (project);
+ project.NotifyReferenceAddedToProject (value);
}
}
- protected override void OnRemoveComplete(int index, object
value)
+ protected override void RemoveItem (int index)
{
+ ProjectReference pr = Items [index];
+ base.RemoveItem (index);
if (project != null) {
- ((ProjectReference) value).SetOwnerProject
(null);
- project.NotifyReferenceRemovedFromProject
((ProjectReference) value);
+ pr.SetOwnerProject (null);
+ project.NotifyReferenceRemovedFromProject (pr);
}
}
- protected override void OnSet (int index, object oldValue,
object newValue)
+ protected override void SetItem (int index, ProjectReference
item)
{
+ ProjectReference oldValue = Items [index];
+ base.SetItem (index, item);
if (project != null) {
- ((ProjectReference) oldValue).SetOwnerProject
(null);
- project.NotifyReferenceRemovedFromProject
((ProjectReference) oldValue);
+ oldValue.SetOwnerProject (null);
+ project.NotifyReferenceRemovedFromProject
(oldValue);
+ item.SetOwnerProject (project);
+ project.NotifyReferenceAddedToProject (item);
}
}
-
- protected override void OnSetComplete (int index, object
oldValue, object newValue)
- {
- if (project != null) {
- ((ProjectReference) newValue).SetOwnerProject
(project);
- project.NotifyReferenceAddedToProject
((ProjectReference) newValue);
- }
- }
-
- public class ProjectReferenceEnumerator : object, IEnumerator {
-
- private IEnumerator baseEnumerator;
-
- private IEnumerable temp;
-
- public
ProjectReferenceEnumerator(ProjectReferenceCollection mappings) {
- this.temp = ((IEnumerable)(mappings));
- this.baseEnumerator = temp.GetEnumerator();
- }
-
- public ProjectReference Current {
- get {
- return
((ProjectReference)(baseEnumerator.Current));
- }
- }
-
- object IEnumerator.Current {
- get {
- return baseEnumerator.Current;
- }
- }
-
- public bool MoveNext() {
- return baseEnumerator.MoveNext();
- }
-
- bool IEnumerator.MoveNext() {
- return baseEnumerator.MoveNext();
- }
-
- public void Reset() {
- baseEnumerator.Reset();
- }
-
- void IEnumerator.Reset() {
- baseEnumerator.Reset();
- }
- }
}
}
_______________________________________________
Mono-patches maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches