Changeset 5928 for trunk/sources/HeuristicLab.Collections
- Timestamp:
- 04/02/11 01:52:19 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Collections/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Collections/3.3/IObservableArray.cs
r5445 r5928 26 26 public interface IObservableArray<T> : IList<T>, INotifyObservableArrayItemsChanged<T>, INotifyPropertyChanged { 27 27 int Length { get; } 28 29 void Reverse(); 30 void Reverse(int index, int count); 28 31 } 29 32 } -
trunk/sources/HeuristicLab.Collections/3.3/IObservableList.cs
r5445 r5928 23 23 24 24 namespace HeuristicLab.Collections { 25 public interface IObservableList<T> : IList<T>, IObservableCollection<T>, INotifyObservableListItemsChanged<T> { } 25 public interface IObservableList<T> : IList<T>, IObservableCollection<T>, INotifyObservableListItemsChanged<T> { 26 void Reverse(); 27 void Reverse(int index, int count); 28 } 26 29 } -
trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableArray.cs
r5445 r5928 98 98 throw new NotSupportedException(); 99 99 } 100 101 void IObservableArray<T>.Reverse() { 102 throw new NotSupportedException(); 103 } 104 void IObservableArray<T>.Reverse(int index, int count) { 105 throw new NotSupportedException(); 106 } 100 107 #endregion 101 108 -
trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableList.cs
r5445 r5928 93 93 94 94 void ICollection<T>.Clear() { 95 throw new NotSupportedException(); 96 } 97 98 void IObservableList<T>.Reverse() { 99 throw new NotSupportedException(); 100 } 101 void IObservableList<T>.Reverse(int index, int count) { 95 102 throw new NotSupportedException(); 96 103 }
Note: See TracChangeset
for help on using the changeset viewer.