Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

58 lines
1.3 KiB
C#

// ****************************************************************
// Copyright 2007, Charlie Poole
// This is free software licensed under the NUnit license. You may
// obtain a copy of the license at http://nunit.org/?p=license&r=2.4
// ****************************************************************
using System;
using System.Collections;
namespace NUnit.Util
{
/// <summary>
/// Summary description for RecentFilesCollection.
/// </summary>
public class RecentFilesCollection : ReadOnlyCollectionBase
{
public void Add( RecentFileEntry entry )
{
InnerList.Add( entry );
}
public void Insert( int index, RecentFileEntry entry )
{
InnerList.Insert( index, entry );
}
public void Remove( string fileName )
{
int index = IndexOf( fileName );
if ( index != -1 )
RemoveAt( index );
}
public void RemoveAt( int index )
{
InnerList.RemoveAt( index );
}
public int IndexOf( string fileName )
{
for( int index = 0; index < InnerList.Count; index++ )
if ( this[index].Path == fileName )
return index;
return -1;
}
public RecentFileEntry this[int index]
{
get { return (RecentFileEntry)InnerList[index]; }
}
public void Clear()
{
InnerList.Clear();
}
}
}