Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/11 01:52:19 (13 years ago)
Author:
swagner
Message:

Prevented disappearing of runs in an optimizer when moving the optimizer up or down in an experiment (#1445)

Location:
trunk/sources/HeuristicLab.Collections/3.3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Collections/3.3/IObservableArray.cs

    r5445 r5928  
    2626  public interface IObservableArray<T> : IList<T>, INotifyObservableArrayItemsChanged<T>, INotifyPropertyChanged {
    2727    int Length { get; }
     28
     29    void Reverse();
     30    void Reverse(int index, int count);
    2831  }
    2932}
  • trunk/sources/HeuristicLab.Collections/3.3/IObservableList.cs

    r5445 r5928  
    2323
    2424namespace 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  }
    2629}
  • trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableArray.cs

    r5445 r5928  
    9898      throw new NotSupportedException();
    9999    }
     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    }
    100107    #endregion
    101108
  • trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableList.cs

    r5445 r5928  
    9393
    9494    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) {
    95102      throw new NotSupportedException();
    96103    }
Note: See TracChangeset for help on using the changeset viewer.